1
0
Fork 0
mirror of synced 2024-08-12 16:41:26 +12:00

Fix automation section crashing when a table has been deleted and is in use

This commit is contained in:
Andrew Kingston 2022-03-28 16:26:37 +01:00
parent 52b33fce2e
commit 7f66a3cace

View file

@ -162,7 +162,7 @@
<Select
on:change={e => onChange(e, key)}
value={inputData[key]}
options={Object.keys(table.schema)}
options={Object.keys(table?.schema || {})}
/>
{:else if value.customType === "filters"}
<ActionButton on:click={drawer.show}>Define filters</ActionButton>