excel import - ability to skip header

This commit is contained in:
Jan Prochazka
2021-11-10 17:23:21 +01:00
parent aaf6ad8ab0
commit 6bcc83d920
3 changed files with 19 additions and 1 deletions

View File

@@ -13,6 +13,8 @@
{#if arg.type == 'text'}
<FormTextField label={arg.label} {name} defaultValue={arg.default} />
{:else if arg.type == 'number'}
<FormTextField label={arg.label} type="number" {name} defaultValue={arg.default} />
{:else if arg.type == 'checkbox'}
<FormCheckboxField label={arg.label} {name} defaultValue={arg.default} />
{:else if arg.type == 'select'}