fix(nc-gui): navigate to last opened base

This commit is contained in:
Ramesh Mane
2025-05-17 06:32:03 +00:00
parent aeac273043
commit ee8ce1a0bc
4 changed files with 34 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ const openedBase = computed(() => {
const isLoadingSidebar = computed(() => {
const hasEmptyQueryParams = ncIsEmptyObject(route.value.params)
if (hasEmptyQueryParams) return false
if (hasEmptyQueryParams) return true
return !isProjectsLoaded.value
})