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
gitea/salix-front/pipeline/pr-dev Something is wrong with the build of this commit
Details
This commit is contained in:
parent
4a249b8da8
commit
a74ff042bc
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue