ui: add frontend diagnostics and stable test hooks

This commit is contained in:
a.tolmachev
2026-04-12 11:23:10 +03:00
parent d85f7ddf05
commit 1cb4cbc960
13 changed files with 229 additions and 51 deletions
+5 -5
View File
@@ -135,14 +135,14 @@
<!-- Tabs -->
<div class="tab-row">
<template x-for="t in tabDefs" :key="t.id">
<template x-for="tabDef in tabDefs" :key="tabDef.id">
<button
class="tab-item"
:class="{ active: tab === t.id }"
@click="setTab(t.id)"
:class="{ active: tab === tabDef.id }"
@click="setTab(tabDef.id)"
>
<span x-text="t.label"></span>
<span class="tab-count" x-text="tabCount(t.id)"></span>
<span x-text="tabDef.label"></span>
<span class="tab-count" x-text="tabCount(tabDef.id)"></span>
</button>
</template>
</div>