1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +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 6bcf738444
commit e109f06fb4

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>