Skip to content

Commit

Permalink
small size correction if footprint not shown
Browse files Browse the repository at this point in the history
  • Loading branch information
spacehamster87 committed Sep 9, 2024
1 parent 8e1c5a4 commit 065b327
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/frontend/src/Job.root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
</Col>
<!-- If enabled: Column 2: Job Footprint, Polar Representation, Heuristic Summary -->
{#if showFootprint}
{#if showFootprint}
<Col xs={12} md={6} xl={4} xxl={3} class="mb-3 mb-xxl-0">
{#if $initq.error}
<Card body color="danger">{$initq.error.message}</Card>
Expand All @@ -285,7 +285,7 @@
{/if}
<!-- Column 3: Job Roofline; If footprint Enabled: full width, else half width -->
<Col xs={12} md={showFootprint ? 12 : 6} xl={5} xxl={6}>
<Col xs={12} md={showFootprint ? 12 : 6} xl={showFootprint ? 5 : 6} xxl={6}>
{#if $initq.error || $jobMetrics.error}
<Card body color="danger">
<p>Initq Error: {$initq.error?.message}</p>
Expand Down

0 comments on commit 065b327

Please sign in to comment.