fix sidebar not showing on user pages (#7097)

* fix sidebar not showing on user pages

* prepr
This commit is contained in:
Prospector
2026-08-12 17:25:26 -07:00
committed by GitHub
parent 734fd9cdb3
commit 4b82cca3bf
+4 -1
View File
@@ -202,7 +202,10 @@ watch(
},
)
const forceSidebar = computed(
() => route.path.startsWith('/browse') || route.path.startsWith('/project'),
() =>
route.path.startsWith('/browse') ||
route.path.startsWith('/project') ||
route.path.startsWith('/user'),
)
const sidebarVisible = computed(() => sidebarToggled.value || forceSidebar.value)
const hostingRouteActive = computed(() => route.path.startsWith('/hosting'))