Fix issue displaying linked records in a table
This commit is contained in:
parent
e35112bdb4
commit
4b1549a04e
|
@ -99,7 +99,7 @@
|
||||||
{#if schema[header].type === 'attachment'}
|
{#if schema[header].type === 'attachment'}
|
||||||
<AttachmentList files={row[header]} />
|
<AttachmentList files={row[header]} />
|
||||||
{:else if schema[header].type === 'link'}
|
{: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]}
|
{:else if row[header]}
|
||||||
<td>{row[header]}</td>
|
<td>{row[header]}</td>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in New Issue