Skip to content

Commit

Permalink
Fix subtle bug in form-select
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Mar 7, 2024
1 parent eaaa775 commit 3decda2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ftbot/PairlistConfigActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
v-model="pairlistStore.configName"
size="sm"
:options="pairlistStore.savedConfigs.map((c) => c.name)"
@change="(config) => pairlistStore.selectOrCreateConfig(config as string)"
@update:model-value="(config) => pairlistStore.selectOrCreateConfig(config as string)"
/>
</edit-value>
<b-button
Expand Down

0 comments on commit 3decda2

Please sign in to comment.