1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

fix lint issues

This commit is contained in:
Maurits Lourens 2021-08-03 21:34:26 +02:00
parent f4dd196ed5
commit 0d1ea39ae3

View file

@ -23,7 +23,7 @@
bind:fieldSchema
>
{#if fieldState}
{#if optionsType === 'select'}
{#if optionsType === "select"}
<CoreSelect
value={$fieldState.value}
id={$fieldState.fieldId}
@ -33,7 +33,7 @@
{placeholder}
on:change={e => fieldApi.setValue(e.detail)}
/>
{:else if optionsType === 'radio'}
{:else if optionsType === "radio"}
<RadioGroup
value={$fieldState.value}
id={$fieldState.fieldId}