Fix exclusive to shared in svlete and graphql

This commit is contained in:
Aditya Ujeniya
2025-09-09 14:57:05 +02:00
parent d00881de2e
commit 3b9d05cc6d
16 changed files with 35 additions and 132 deletions

View File

@@ -69,7 +69,7 @@
hostname
}
SMT
exclusive
shared
partition
arrayJobId
monitoringStatus

View File

@@ -172,7 +172,7 @@
{job.numNodes}
{/if}
<Icon name="pc-horizontal" />
{#if job.exclusive != 1}
{#if job.shared != "none"}
(shared)
{/if}
{#if job.numAcc > 0}

View File

@@ -213,7 +213,7 @@
metric={metric.data.name}
cluster={cluster.find((c) => c.name == job.cluster)}
subCluster={job.subCluster}
isShared={job.exclusive != 1}
isShared={job.shared != "none"}
numhwthreads={job.numHWThreads}
numaccs={job.numAcc}
zoomState={zoomStates[metric.data.name] || null}