We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 616778b commit 47ac63eCopy full SHA for 47ac63e
1 file changed
frontend/app.vue
@@ -57,7 +57,12 @@ const contentClass = computed(() =>
57
: 'flex-1 overflow-auto min-h-0'
58
)
59
60
-const showSidebar = computed(() => !String(route.path || '').startsWith('/wrapped'))
+const showSidebar = computed(() => {
61
+ const path = String(route.path || '')
62
+ if (path === '/') return false
63
+ if (path === '/decrypt' || path === '/detection-result' || path === '/decrypt-result') return false
64
+ return !(path === '/wrapped' || path.startsWith('/wrapped/'))
65
+})
66
</script>
67
68
<style>
0 commit comments