Improve alignment of notice cards

This commit is contained in:
Christoph Kluge 2023-06-16 16:49:19 +02:00
parent f466312015
commit 4c708dba3f
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
{#each rows as row}
<tr>
{#each row as item (item)}
<td>
<td style="vertical-align:top;"> <!-- For Aligning Notice Cards -->
{#if !isPlaceholder(item) && plotWidth > 0}
<slot item={item} width={plotWidth}></slot>
{/if}

View File

@ -144,7 +144,7 @@
{:else if item.removed == true && item.data == null}
<Card body color="info">Metric '{ selectedMetric }' disabled for subcluster '{ item.subCluster }'</Card>
{:else}
<Card body color="warning">Missing Data</Card>
<Card body color="warning">Missing Full Dataset</Card>
{/if}
</PlotTable>
{/if}