From b1cb45dfe66bad28360912a5c582bb14685b69be Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Tue, 10 Sep 2024 12:14:34 +0200 Subject: [PATCH] add overflow-x to statsTable, use sveltestrap input --- web/frontend/src/Job.root.svelte | 1 + web/frontend/src/job/StatsTable.svelte | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/web/frontend/src/Job.root.svelte b/web/frontend/src/Job.root.svelte index c68ccae..6a15bfc 100644 --- a/web/frontend/src/Job.root.svelte +++ b/web/frontend/src/Job.root.svelte @@ -418,6 +418,7 @@ {#if $jobMetrics?.data?.jobMetrics} diff --git a/web/frontend/src/job/StatsTable.svelte b/web/frontend/src/job/StatsTable.svelte index 606d05b..e5ecfc6 100644 --- a/web/frontend/src/job/StatsTable.svelte +++ b/web/frontend/src/job/StatsTable.svelte @@ -11,6 +11,7 @@ import { Button, Table, + Input, InputGroup, InputGroupText, Icon, @@ -86,6 +87,7 @@ + {#each selectedMetrics as metric} + {/each} + {#each selectedMetrics as metric}
{metric} - {#each scopesForMetric(metric, jobMetrics) as scope} {/each} - +
Node