Fixing automation issue - now autocolumns hidden there too.

This commit is contained in:
mike12345567 2021-02-16 18:58:59 +00:00
parent 89e4e4787e
commit 1c577349d4
1 changed files with 16 additions and 14 deletions

View File

@ -30,6 +30,7 @@
{#if schemaFields.length}
<div class="schema-fields">
{#each schemaFields as [field, schema]}
{#if !schema.autocolumn}
{#if schemaHasOptions(schema)}
<Select label={field} extraThin secondary bind:value={value[field]}>
<option value="">Choose an option</option>
@ -45,6 +46,7 @@
type="string"
{bindings} />
{/if}
{/if}
{/each}
</div>
{/if}