Fix showing 1px new row component when no columns exist
This commit is contained in:
parent
4162600950
commit
975cb867ee
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue