Skip to content

Commit 93eb17d

Browse files
committed
ui: display local filesystem instead of user
1 parent 242b3e5 commit 93eb17d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/app/src/components/AppFooter.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useStudioState } from '../composables/useStudioState'
55
import type { DropdownMenuItem } from '@nuxt/ui'
66
77
const { ui, host, git } = useStudio()
8-
const { preferences, updatePreference, unsetActiveLocation } = useStudioState()
8+
const { devMode, preferences, updatePreference, unsetActiveLocation } = useStudioState()
99
const user = host.user.get()
1010
1111
// const showTechnicalMode = computed({
@@ -51,7 +51,14 @@ function closeStudio() {
5151
<div
5252
class="bg-muted/50 border-default border-t-[0.5px] flex items-center justify-between gap-1.5 px-2 py-2"
5353
>
54+
<span
55+
v-if="devMode"
56+
class="ml-2 text-xs text-muted"
57+
>
58+
Using local filesystem
59+
</span>
5460
<UDropdownMenu
61+
v-else
5562
:portal="false"
5663
:items="userMenuItems"
5764
:ui="{ content: 'w-full' }"

0 commit comments

Comments
 (0)