chore: Repair output streaming, lots of css/go lint
Some checks failed
Build Snapshot / build-snapshot (push) Has been cancelled
DevSkim / DevSkim (push) Has been cancelled
Buf CI / buf (push) Has been cancelled

This commit is contained in:
jamesread
2025-09-06 08:42:13 +01:00
parent 60c0c5db27
commit 570c0ba087
45 changed files with 673 additions and 521 deletions

View File

@@ -30,7 +30,7 @@
<div id="layout">
<Sidebar ref="sidebar" />
<div id="content">
<div id="content" initial-martial-complete="{{ hasLoaded }}">
<main title="Main content">
<router-view :key="$route.fullPath" />
</main>
@@ -78,6 +78,7 @@ const serverConnection = ref('Connected');
const currentVersion = ref('?');
const bannerMessage = ref('');
const bannerCss = ref('');
const hasLoaded = ref(false);
function toggleSidebar() {
sidebar.value.toggle()
@@ -102,6 +103,8 @@ async function requestInit() {
icon: '📊'
})
}
hasLoaded.value = true;
} catch (error) {
console.error("Error initializing client", error)
}