tweaked dev build header
All checks were successful
Continuous Integration / Update Development (push) Successful in 2m5s

This commit is contained in:
2026-01-01 00:53:46 -05:00
parent 08aa87de5b
commit 8b1f30611c

View File

@@ -19,6 +19,7 @@ function formatDate(dateStr) {
} }
const environment = import.meta.env.VITE_ENVIRONMENT; const environment = import.meta.env.VITE_ENVIRONMENT;
const version = import.meta.env.VITE_APPLICATION_VERSION;
</script> </script>
<template> <template>
@@ -30,7 +31,7 @@ const environment = import.meta.env.VITE_ENVIRONMENT;
<Navbar class="flex"></Navbar> <Navbar class="flex"></Navbar>
<Alert v-if="environment == 'dev'" class="m-2 mx-auto w-5xl" variant="info"> <Alert v-if="environment == 'dev'" class="m-2 mx-auto w-5xl" variant="info">
<AlertDescription class="flex flex-row items-center text-nowrap gap-5 mx-auto"> <AlertDescription class="flex flex-row items-center text-nowrap gap-5 mx-auto">
<p>This is a development build of the application. Some features will be unavailable or unstable.</p> <p>Development environment (v{{ version }}). Features may be incomplete or unavailable.</p>
</AlertDescription> </AlertDescription>
</Alert> </Alert>
<Alert v-if="userStore.user?.LOAs?.[0]" class="m-2 mx-auto w-5xl" variant="info"> <Alert v-if="userStore.user?.LOAs?.[0]" class="m-2 mx-auto w-5xl" variant="info">