Skip to content

Commit

Permalink
fix(ui): fix Field align binding
Browse files Browse the repository at this point in the history
Fix a small regression from
#638 , the
`BuilderFieldsAlign` is not correctly binded to the `v-model` directive.
  • Loading branch information
madeindjs committed Dec 6, 2024
1 parent 99fcb0d commit d3e8a7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/builder/settings/BuilderFieldsAlign.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
<div v-if="mode == 'pick' || mode == 'css'" class="main">
<div v-if="mode == 'pick'" class="pickerContainer">
<BuilderSelect
:value="subMode"
:model-value="subMode"
:options="selectOptions"
@input="handleInputSelect"
@update:model-value="handleInputSelect"
/>
</div>

Expand Down

0 comments on commit d3e8a7e

Please sign in to comment.