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