mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 23:56:34 +00:00
fix: mobile view setting page navigation issue
This commit is contained in:
@@ -8,7 +8,7 @@ const basesStore = useBases()
|
||||
const { resolvedProject } = storeToRefs(basesStore)
|
||||
|
||||
const sidebarStore = useSidebarStore()
|
||||
const { activeSidebarTab, hideSidebar } = storeToRefs(sidebarStore)
|
||||
const { activeSidebarTab, isLeftSidebarOpen } = storeToRefs(sidebarStore)
|
||||
|
||||
const { isSharedBase } = storeToRefs(useBase())
|
||||
|
||||
@@ -44,7 +44,7 @@ const navigateToBaseSettings = (page: string) => {
|
||||
navigateTo(`/${wsId}/${baseId}/settings/${slug}`)
|
||||
|
||||
if (isMobileMode.value) {
|
||||
hideSidebar.value = true
|
||||
isLeftSidebarOpen.value = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user