Skip to content

Commit 205ca9a

Browse files
fix: adjust vue-vanilla select id
Fixes a mismatch between the select input id and the corresponding label in the Vue Vanilla renderers.
1 parent b6ad627 commit 205ca9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue-vanilla/src/controls/EnumControlRenderer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:applied-options="appliedOptions"
77
>
88
<select
9-
:id="control.id + '-select'"
9+
:id="control.id + '-input'"
1010
:class="styles.control.select"
1111
:value="control.data"
1212
:disabled="!control.enabled"

0 commit comments

Comments
 (0)