fix(frontend): remove version string from sidebar, bump to v1.0.0
CD - Develop / build-and-deploy (push) Failing after 12m52s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-15 20:03:14 -04:00
parent 1663ec8c03
commit 43b56fb859
3 changed files with 5 additions and 12 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
{
"name": "hiveops-APPNAME-frontend",
"version": "1.0.1-dev",
"name": "hiveops-aria-frontend",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "hiveops-APPNAME-frontend",
"version": "1.0.1-dev",
"name": "hiveops-aria-frontend",
"version": "1.0.0",
"dependencies": {
"axios": "^1.6.0"
},
+1 -1
View File
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "hiveops-aria-frontend",
"version": "1.0.1-dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
-7
View File
@@ -9,9 +9,6 @@
import { authApi } from './lib/api';
import type { ThreatSeverity } from './lib/api';
declare const __APP_VERSION__: string;
const appVersion: string = __APP_VERSION__;
let userInfo: { name?: string; email?: string; role?: string } | null = null;
let sidebarCollapsed = localStorage.getItem('ariaSidebarCollapsed') === 'true';
@@ -58,9 +55,6 @@
</div>
{/if}
</div>
{#if !sidebarCollapsed}
<span class="sidebar-version">v{appVersion}</span>
{/if}
</div>
<nav class="sidebar-nav">
@@ -184,7 +178,6 @@
.aria-brand-text { display: flex; flex-direction: column; }
.aria-name { font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; color: white; }
.aria-sub { font-size: 0.65rem; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; margin-top: 1px; }
.sidebar-version { font-size: 0.7rem; color: rgba(255,255,255,0.4); padding-left: 2px; }
.sidebar-nav { display: flex; flex-direction: column; padding: 0.75rem 0; flex: 1; }