1 Commits

Author SHA1 Message Date
e45b5f70e3 fix: Changes in frontend ui 2026-04-03 05:13:07 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@
{#if subClusters?.length > 1} {#if subClusters?.length > 1}
{#each subClusters.map(sc => sc.name) as scn} {#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> <CardBody>
<UsageDash {presetCluster} presetSubCluster={scn} {useCbColors} loadMe={(activeTab === `${scn}-usage-dash`)}></UsageDash> <UsageDash {presetCluster} presetSubCluster={scn} {useCbColors} loadMe={(activeTab === `${scn}-usage-dash`)}></UsageDash>
</CardBody> </CardBody>

View File

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