mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:26:57 +00:00
fix: mobile view setting page navigation issue
This commit is contained in:
@@ -8,7 +8,7 @@ const workspaceStore = useWorkspace()
|
||||
const { activeWorkspace, isTeamsEnabled } = storeToRefs(workspaceStore)
|
||||
|
||||
const sidebarStore = useSidebarStore()
|
||||
const { activeSidebarTab, hideSidebar } = storeToRefs(sidebarStore)
|
||||
const { activeSidebarTab, isLeftSidebarOpen } = storeToRefs(sidebarStore)
|
||||
|
||||
const { appInfo, isMobileMode } = useGlobal()
|
||||
|
||||
@@ -43,7 +43,7 @@ const navigateToWsSettings = (page: string) => {
|
||||
navigateTo(`/${wsId}/settings/${slug}`)
|
||||
|
||||
if (isMobileMode.value) {
|
||||
hideSidebar.value = true
|
||||
isLeftSidebarOpen.value = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user