mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-10-03 13:04:32 +02:00
Fix exclusive to shared in svlete and graphql
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
hostname
|
||||
}
|
||||
SMT
|
||||
exclusive
|
||||
shared
|
||||
partition
|
||||
arrayJobId
|
||||
monitoringStatus
|
||||
|
@@ -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}
|
||||
|
@@ -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}
|
||||
|
Reference in New Issue
Block a user