refactor: refs #7358 use QBadge instead of QChip

This commit is contained in:
Jon Elias 2025-03-25 14:20:38 +01:00
parent 373d011017
commit 90f6486fc1
1 changed files with 5 additions and 8 deletions

View File

@ -25,9 +25,9 @@ const getEnvironment = computed(() => {
case 'development':
return 'DEV';
case 'production':
return;
return null;
default:
return env.toUpperCase();
return env;
}
});
onMounted(() => stateStore.setMounted());
@ -60,10 +60,10 @@ const refresh = () => window.location.reload();
{{ t('globals.backToDashboard') }}
</QTooltip>
</QBtn>
<QBadge v-if="getEnvironment" color="primary" align="top">
{{ getEnvironment }}
</QBadge>
</RouterLink>
<QChip class="q-ml-xs q-mr-xs envChip">
{{ getEnvironment }}
</QChip>
<VnBreadcrumbs v-if="$q.screen.gt.sm" />
<QSpinner
color="primary"
@ -132,7 +132,4 @@ const refresh = () => window.location.reload();
.q-header {
background-color: var(--vn-section-color);
}
.envChip {
background-color: $primary;
}
</style>