fix(nc-gui): some ui changes

This commit is contained in:
Ramesh Mane
2025-05-17 06:31:46 +00:00
parent e9296a4858
commit e916d35494
9 changed files with 76 additions and 6 deletions

View File

@@ -3,6 +3,8 @@ import { useTitle } from '@vueuse/core'
const { isUIAllowed } = useRoles()
const { hideSidebar } = storeToRefs(useSidebarStore())
const workspaceStore = useWorkspace()
const { loadRoles } = useRoles()
@@ -31,6 +33,7 @@ watch(
)
onMounted(() => {
hideSidebar.value = true
isFromIntegrationPage.value = true
until(() => currentWorkspace.value?.id)
@@ -42,6 +45,7 @@ onMounted(() => {
onBeforeMount(() => {
isFromIntegrationPage.value = false
hideSidebar.value = false
})
</script>