Skip to content

Commit

Permalink
remove width tags from slot defs
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Oct 8, 2024
1 parent 89ec749 commit f616c7e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions web/frontend/src/Job.root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@
{:else if $initq?.data && $jobMetrics?.data?.jobMetrics}
<PlotGrid
let:item
let:width
renderFor="job"
items={orderAndMap(
groupByScope($jobMetrics.data.jobMetrics),
Expand All @@ -369,7 +368,6 @@
nativeScope={$initq.data.globalMetrics.find((gm) => gm.name == item.metric)?.scope}
rawData={item.data.map((x) => x.metric)}
scopes={item.data.map((x) => x.scope)}
{width}
isShared={$initq.data.job.exclusive != 1}
/>
{:else}
Expand Down
2 changes: 0 additions & 2 deletions web/frontend/src/Node.root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@
{:else}
<PlotGrid
let:item
let:width
renderFor="node"
itemsPerRow={ccconfig.plot_view_plotsPerRow}
items={$nodeMetricsData.data.nodeMetrics[0].metrics
Expand All @@ -209,7 +208,6 @@
</h4>
{#if item.disabled === false && item.metric}
<MetricPlot
{width}
height={300}
metric={item.name}
timestep={item.metric.timestep}
Expand Down
2 changes: 0 additions & 2 deletions web/frontend/src/Systems.root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@
{:else}
<PlotGrid
let:item
let:width
renderFor="systems"
itemsPerRow={ccconfig.plot_view_plotsPerRow}
items={$nodesQuery.data.nodeMetrics
Expand Down Expand Up @@ -209,7 +208,6 @@
</h4>
{#if item.disabled === false && item.data}
<MetricPlot
{width}
height={plotHeight}
timestep={item.data.metric.timestep}
series={item.data.metric.series}
Expand Down

0 comments on commit f616c7e

Please sign in to comment.