1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Remove double 'no data' in empty tables

This commit is contained in:
Andrew Kingston 2020-10-02 16:48:01 +01:00
parent 8706561bd4
commit 27d41069cb

View file

@ -81,7 +81,7 @@
{/if}
{#each columns as header, idx}
<td class="no-border">
{#if idx === 0}No data.{/if}
{#if idx === 0 && !allowEditing}No data.{/if}
</td>
{/each}
{/if}