diff --git a/web/frontend/src/Job.root.svelte b/web/frontend/src/Job.root.svelte index 18a075b..93c5873 100644 --- a/web/frontend/src/Job.root.svelte +++ b/web/frontend/src/Job.root.svelte @@ -272,7 +272,7 @@ {/if} - + {#if $initq.data} diff --git a/web/frontend/src/plots/Polar.svelte b/web/frontend/src/plots/Polar.svelte index 3aeb74d..59f89f3 100644 --- a/web/frontend/src/plots/Polar.svelte +++ b/web/frontend/src/plots/Polar.svelte @@ -25,7 +25,7 @@ export let metrics export let cluster export let jobMetrics - export let height = 350 + export let height = 365 const metricConfig = getContext('metrics') @@ -89,7 +89,13 @@ // No custom defined options but keep for clarity const options = { maintainAspectRatio: false, - animation: false + animation: false, + scales: { // fix scale + r: { + suggestedMin: 0.0, + suggestedMax: 1.0 + } + } }