Only show icon if an error message is present
This commit is contained in:
parent
08920f8015
commit
1f6466f0eb
|
@ -161,7 +161,9 @@
|
|||
Success
|
||||
{:else}
|
||||
Failure
|
||||
<Icon name="Help" tooltip={errors[column.name]} />
|
||||
{#if errors[column.name]}
|
||||
<Icon name="Help" tooltip={errors[column.name]} />
|
||||
{/if}
|
||||
{/if}
|
||||
</span>
|
||||
<Icon
|
||||
|
|
Loading…
Reference in New Issue