1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Fix issue displaying linked records in a table

This commit is contained in:
Andrew Kingston 2020-10-09 12:42:56 +01:00
parent e35112bdb4
commit 4b1549a04e

View file

@ -99,7 +99,7 @@
{#if schema[header].type === 'attachment'}
<AttachmentList files={row[header]} />
{:else if schema[header].type === 'link'}
<td>{row[header] ? row[header].length : 0} related row(s)</td>
<td>{row[header]} related row(s)</td>
{:else if row[header]}
<td>{row[header]}</td>
{/if}