1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

fixes visuals

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-09 16:29:36 +01:00
parent e4d863b765
commit 6780266ac7

View file

@ -42,7 +42,7 @@
</Label>
{:else}
{#if schema.oneToMany}
<Select on:change={e => linkedRows = [e.target.value]} name={label} {label}>
<Select secondary on:change={e => linkedRows = [e.target.value]} name={label} {label}>
<option value="">Choose an option</option>
{#each rows as row}
<option selected={row._id === linkedRows[0]} value={row._id}>{getPrettyName(row)}</option>