1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Fix showing 1px new row component when no columns exist

This commit is contained in:
Andrew Kingston 2023-04-24 16:14:47 +01:00
parent 4162600950
commit 975cb867ee

View file

@ -38,7 +38,7 @@
{#each $renderedRows as row, idx}
<GridRow {row} {idx} invertY={idx >= $rowVerticalInversionIndex} />
{/each}
{#if $config.allowAddRows}
{#if $config.allowAddRows && $renderedColumns.length}
<div
class="blank"
class:highlighted={$hoveredRowId === BlankRowID}