From 1d41ff81902c6e318fdcab54e0fdffc94b5ed24f Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Fri, 16 Jan 2026 17:26:24 +0100 Subject: [PATCH] add jobSummary conditional display --- web/frontend/src/Job.root.svelte | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/frontend/src/Job.root.svelte b/web/frontend/src/Job.root.svelte index 2ff7ab62..f2cff319 100644 --- a/web/frontend/src/Job.root.svelte +++ b/web/frontend/src/Job.root.svelte @@ -94,6 +94,7 @@ let totalMetrics = $state(0); /* Derived */ + const showSummary = $derived((!!ccconfig[`jobView_showFootprint`] || !!ccconfig[`jobView_showPolarPlot`])) const jobMetrics = $derived(queryStore({ client: client, query: query, @@ -261,7 +262,9 @@ {#if $initq.error} {$initq.error.message} {:else if $initq?.data} - + {#if showSummary} + + {/if} {:else} {/if}