Merge branch 'release/v1.5' into feature/add_subcluster_filter

This commit is contained in:
2026-04-24 11:55:28 +02:00
4 changed files with 150 additions and 50 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,