Skip to content

Commit

Permalink
fix: adjust vue-vanilla select id
Browse files Browse the repository at this point in the history
Fixes a mismatch between the select input id and the corresponding
label in the Vue Vanilla renderers.
  • Loading branch information
changjung-kim authored Aug 21, 2024
1 parent b6ad627 commit 205ca9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-vanilla/src/controls/EnumControlRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:applied-options="appliedOptions"
>
<select
:id="control.id + '-select'"
:id="control.id + '-input'"
:class="styles.control.select"
:value="control.data"
:disabled="!control.enabled"
Expand Down

0 comments on commit 205ca9a

Please sign in to comment.