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
1 changed files with 1 additions and 1 deletions

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}