mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2026-04-03 14:37:29 +02:00
fix: Changes in frontend ui
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user