We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecae07f commit 9fe451eCopy full SHA for 9fe451e
packages/coreui-vue/src/components/form/CFormCheck.ts
@@ -132,16 +132,14 @@ const CFormCheck = defineComponent({
132
attrs.class,
133
]
134
135
- const inputClassName = props.button
136
- ? 'btn-check'
137
- : [
138
- 'form-check-input',
139
- {
140
- 'is-invalid': props.invalid,
141
- 'is-valid': props.valid,
142
- 'me-2': props.hitArea,
143
- },
144
- ]
+ const inputClassName = [
+ props.button ? 'btn-check' : 'form-check-input',
+ {
+ 'is-invalid': props.invalid,
+ 'is-valid': props.valid,
+ 'me-2': props.hitArea,
+ },
+ ]
145
146
const formControl = () => {
147
return h('input', {
0 commit comments