fixes visuals

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-09 16:29:36 +01:00
parent e4d863b765
commit 6780266ac7
1 changed files with 1 additions and 1 deletions

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>