add default value, remove unused argument

This commit is contained in:
Christoph Kluge 2024-04-25 16:59:04 +02:00
parent 136460567c
commit b66750339d
2 changed files with 1 additions and 2 deletions

View File

@ -341,7 +341,6 @@
scopes={item.data.map((x) => x.scope)} scopes={item.data.map((x) => x.scope)}
{width} {width}
isShared={$initq.data.job.exclusive != 1} isShared={$initq.data.job.exclusive != 1}
resources={$initq.data.job.resources}
/> />
{:else} {:else}
<Card body color="warning" <Card body color="warning"

View File

@ -24,7 +24,7 @@
export let configName; export let configName;
export let allMetrics = null; export let allMetrics = null;
export let cluster = null; export let cluster = null;
export let showFootprint; export let showFootprint = false;
export let view = "job"; export let view = "job";
const clusters = getContext("clusters"), const clusters = getContext("clusters"),