1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Fix falsey table values not being rendered

This commit is contained in:
Andrew Kingston 2020-10-12 11:02:03 +01:00
parent 75998ea746
commit 7ca3a65c54

View file

@ -100,8 +100,8 @@
<AttachmentList files={row[header]} />
{:else if schema[header].type === 'link'}
<td>{row[header]} related row(s)</td>
{:else if row[header]}
<td>{row[header]}</td>
{:else}
<td>{row[header] == null ? '' : row[header]}</td>
{/if}
{/if}
{/each}