From c54cae83f821ee1baf5e56038b7016d167ae4dd0 Mon Sep 17 00:00:00 2001 From: Henry Jonas Date: Mon, 17 Nov 2025 09:50:48 -0400 Subject: [PATCH] FOUR-27605: toggleNavbar is not defined in the Tasks page - (optional fix) --- resources/js/next/layout/navbar.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/js/next/layout/navbar.js b/resources/js/next/layout/navbar.js index 21edd620a7..591e29d947 100644 --- a/resources/js/next/layout/navbar.js +++ b/resources/js/next/layout/navbar.js @@ -140,6 +140,7 @@ const navbar = new Vue({ taskTitle: "", isMobile: false, isMobileDevice: mobileApp, + isNavbarExpanded: false, }; }, watch: { @@ -213,6 +214,9 @@ const navbar = new Vue({ onResize() { this.isMobile = window.innerWidth < 992; }, + toggleNavbar() { + this.isNavbarExpanded = !this.isNavbarExpanded; + }, }, });