fix: Changes in frontend ui

This commit is contained in:
2026-04-03 05:13:07 +02:00
parent 3001086647
commit e45b5f70e3
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@
{#if subClusters?.length > 1}
{#each subClusters.map(sc => sc.name) as scn}
<TabPane tabId="{scn}-usage-dash" tab="{scn.charAt(0).toUpperCase() + scn.slice(1)} Usage">
<TabPane tabId="{scn}-usage-dash" tab="{scn} Usage">
<CardBody>
<UsageDash {presetCluster} presetSubCluster={scn} {useCbColors} loadMe={(activeTab === `${scn}-usage-dash`)}></UsageDash>
</CardBody>

View File

@@ -64,7 +64,7 @@
const filter = $derived([
{ cluster: { eq: cluster } },
{ state: ["running"] },
{ node: { contains: nodeData.host } },
{ node: { eq: nodeData.host } },
]);
const nodeJobsData = $derived(queryStore({
client: client,