Skip to content

Commit 3074ecc

Browse files
authored
fix(form-radio): apply form state to hidden input element
1 parent 94488c6 commit 3074ecc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/form-radio/form-radio.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<label class="form-check-label">
55
<input v-model="computedLocalChecked"
66
:id="safeId()"
7-
class="form-check-input"
7+
:class="['form-check-input', get_StateClass]"
88
:value="value"
99
:name="get_Name"
1010
:required="get_Name && is_Required"
@@ -22,7 +22,7 @@
2222
<!-- Custom or Button Radio -->
2323
<input v-model="computedLocalChecked"
2424
:id="safeId()"
25-
:class="is_ButtonMode ? '' : 'custom-control-input'"
25+
:class="[is_ButtonMode ? '' : 'custom-control-input', get_StateClass]"
2626
:value="value"
2727
:name="get_Name"
2828
:required="get_Name && is_Required"

0 commit comments

Comments
 (0)