fix: base issues

Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
mertmit
2026-01-09 21:29:10 +03:00
parent c1739895df
commit ccbd648e4a
18 changed files with 376 additions and 426 deletions

View File

@@ -62,7 +62,9 @@ const serverName = computed(() => {
let title = ''
if (props.showWorkspaceBaseInfo) {
title = `NocoDB - ${token.value.workspace?.title || 'Workspace'} - ${token.value.base?.title || 'Base'}`
title = isEeUI
? `NocoDB ${token.value.workspace?.title || 'Workspace'} - ${token.value.base?.title || 'Base'}`
: `NocoDB - ${token.value.base?.title || 'Base'}`
} else {
title = `NocoDB Base - ${openedProject.value?.title}`
}
@@ -123,7 +125,7 @@ const code = computed(
<!-- Workspace/Base Info (for account-level view) -->
<div v-if="showWorkspaceBaseInfo" class="flex flex-col gap-2 p-4 bg-nc-bg-gray-extralight rounded-lg">
<div class="flex items-center gap-2">
<div v-if="isEeUI" class="flex items-center gap-2">
<span class="text-sm font-semibold text-nc-content-gray-subtle">{{ $t('objects.workspace') }}:</span>
<span class="text-sm text-nc-content-gray-subtle2">{{ token.workspace?.title || '-' }}</span>
</div>