add indicator to nodeView state, cap bubble size in roofline

This commit is contained in:
Christoph Kluge
2026-01-30 14:32:41 +01:00
parent 2ef1826b12
commit 32f0664012
3 changed files with 13 additions and 3 deletions

View File

@@ -176,7 +176,11 @@
<InputGroupText><Icon name="clipboard2-pulse" /></InputGroupText>
<InputGroupText>Node State</InputGroupText>
<Button class="flex-grow-1 text-center" color={stateColors[thisNodeState]} disabled>
{thisNodeState}
{#if $nodeMetricsData?.data}
{thisNodeState}
{:else}
<span><Spinner size="sm" secondary/></span>
{/if}
</Button>
</InputGroup>
</Col>