feat: refs #7358 added chip in navbar to show environment
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit Details

This commit is contained in:
Jon Elias 2025-03-21 11:09:42 +01:00
parent 4a249b8da8
commit a74ff042bc
1 changed files with 17 additions and 0 deletions

View File

@ -18,7 +18,18 @@ const state = useState();
const user = state.getUser();
const appName = 'Lilium';
const pinnedModulesRef = ref();
const env = process.env.NODE_ENV;
function getEnvironment() {
switch (env) {
case 'development':
return 'dev';
case 'production':
return;
default:
return env;
}
}
onMounted(() => stateStore.setMounted());
const refresh = () => window.location.reload();
</script>
@ -50,6 +61,9 @@ const refresh = () => window.location.reload();
</QTooltip>
</QBtn>
</RouterLink>
<QChip class="q-ml-xs q-mr-xs envChip">
{{ getEnvironment() }}
</QChip>
<VnBreadcrumbs v-if="$q.screen.gt.sm" />
<QSpinner
color="primary"
@ -118,4 +132,7 @@ const refresh = () => window.location.reload();
.q-header {
background-color: var(--vn-section-color);
}
.envChip {
background-color: $primary;
}
</style>