Merge pull request #238 from ltctceplrm/openlibrary
Fix property mapping box not appearing (again)
This commit is contained in:
commit
87d3984a8f
1 changed files with 7 additions and 1 deletions
|
|
@ -38,7 +38,13 @@
|
||||||
</td>
|
</td>
|
||||||
{:else}
|
{:else}
|
||||||
<td class="col-mapping">
|
<td class="col-mapping">
|
||||||
<select class="dropdown" bind:value={property.mapping}>
|
<select
|
||||||
|
class="dropdown"
|
||||||
|
bind:value={property.mapping}
|
||||||
|
onchange={() => {
|
||||||
|
model = model.copy();
|
||||||
|
}}
|
||||||
|
>
|
||||||
{#each propertyMappingOptions as remappingOption}
|
{#each propertyMappingOptions as remappingOption}
|
||||||
<option value={remappingOption}>
|
<option value={remappingOption}>
|
||||||
{remappingOption}
|
{remappingOption}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue