mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2026-01-28 06:51:45 +01:00
Merge branch 'dev' of github.com:ClusterCockpit/cc-backend into dev
This commit is contained in:
@@ -220,7 +220,7 @@
|
|||||||
{#if $initq.error}
|
{#if $initq.error}
|
||||||
<Card body color="danger">{$initq.error.message}</Card>
|
<Card body color="danger">{$initq.error.message}</Card>
|
||||||
{:else if $initq?.data}
|
{:else if $initq?.data}
|
||||||
<Card class="overflow-auto" style="height: 400px;">
|
<Card class="overflow-auto" style="height: auto;">
|
||||||
<TabContent> <!-- on:tab={(e) => (status = e.detail)} -->
|
<TabContent> <!-- on:tab={(e) => (status = e.detail)} -->
|
||||||
{#if $initq.data?.job?.metaData?.message}
|
{#if $initq.data?.job?.metaData?.message}
|
||||||
<TabPane tabId="admin-msg" tab="Admin Note" active>
|
<TabPane tabId="admin-msg" tab="Admin Note" active>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
showLinks = false,
|
showLinks = false,
|
||||||
renderCard = false,
|
renderCard = false,
|
||||||
width = "auto",
|
width = "auto",
|
||||||
height = "400px",
|
height = "auto",
|
||||||
} = $props();
|
} = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
{#if $roofMetrics.error}
|
{#if $roofMetrics.error}
|
||||||
<Card body color="danger">{$roofMetrics.error.message}</Card>
|
<Card body color="danger">{$roofMetrics.error.message}</Card>
|
||||||
{:else if $roofMetrics?.data}
|
{:else if $roofMetrics?.data}
|
||||||
<Card style="height: 400px;">
|
<Card style="height: auto;"> <!-- 400px -->
|
||||||
<div bind:clientWidth={roofWidth}>
|
<div bind:clientWidth={roofWidth}>
|
||||||
<Roofline
|
<Roofline
|
||||||
width={roofWidth}
|
width={roofWidth}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
let {
|
let {
|
||||||
job,
|
job,
|
||||||
width = "auto",
|
width = "auto",
|
||||||
height = "400px",
|
height = "auto",
|
||||||
} = $props();
|
} = $props();
|
||||||
|
|
||||||
/* Const Init */
|
/* Const Init */
|
||||||
|
|||||||
@@ -127,7 +127,7 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<CardBody class="overflow-auto">
|
<CardBody class="overflow-auto" style="height:380px;">
|
||||||
{#if jobFootprintData.length === 0}
|
{#if jobFootprintData.length === 0}
|
||||||
<div class="text-center">No footprint data for job available.</div>
|
<div class="text-center">No footprint data for job available.</div>
|
||||||
{:else}
|
{:else}
|
||||||
|
|||||||
Reference in New Issue
Block a user