ui: add frontend diagnostics and stable test hooks
This commit is contained in:
+5
-5
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user