chore(panel): fleet-aware shell footer + drop dead vuefinder dep
COA-B cleanup: - Sidebar agent-health footer now reads the fleet store (host count / online count / per-host status + last heartbeat) instead of the single legacy server.connection row, which disagreed with the multi-host fleet. Removed the legacy useServerStore dependency from the shell. - Removed the unused 'vuefinder' dependency (replaced by the native file manager): dep + main.ts plugin/CSS registration. Main JS chunk 588kB -> 165kB. Recon reclassified the 'dead cmd.server v1' item: it is the LIVE license-level command path (module config applies, plugin install, schedules, legacy start/stop) served only by the Go agent — a Rust-agent parity gap, not dead code. Left intact. Build-green (vue-tsc) + boots clean in-browser (0 console errors). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -2,12 +2,10 @@ import { createApp } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
|
||||
|
||||
import { VueFinderPlugin } from 'vuefinder'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import { initThemeGame } from './composables/useThemeGame'
|
||||
import './style.css'
|
||||
import 'vuefinder/dist/vuefinder.css'
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
@@ -16,7 +14,6 @@ pinia.use(piniaPluginPersistedstate)
|
||||
|
||||
app.use(pinia)
|
||||
app.use(router)
|
||||
app.use(VueFinderPlugin)
|
||||
|
||||
// Apply the design-system theming contract (data-theme/data-game on <html>).
|
||||
initThemeGame()
|
||||
|
||||
Reference in New Issue
Block a user