Skip to content

Commit 5c83cd8

Browse files
committed
Update _form-group.js
1 parent 54b74de commit 5c83cd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/form-group/_form-group.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default {
2525
}
2626
// Invalid feeback text (explicitly hidden if state is valid)
2727
let invalidFeedback = h(false)
28-
if (t.hasInvalidFeeback) {
28+
if (t.hasInvalidFeedback) {
2929
let domProps = {}
3030
if (!$slots['invalid-feedback'] && !$slots['feedback']) {
3131
domProps = { innerHTML: t.invalidFeedback || t.feedback || '' }
@@ -197,14 +197,14 @@ export default {
197197
hasDescription () {
198198
return this.description || this.$slots['description']
199199
},
200-
hasInvalidFeeback () {
200+
hasInvalidFeedback () {
201201
if (this.computedState === true) {
202202
// If the form-group state is explicityly valid, we return false
203203
return false
204204
}
205205
return this.invalidFeedback || this.feedback || this.$slots['invalid-feedback'] || this.$slots['feedback']
206206
},
207-
hasValidFeeback () {
207+
hasValidFeedback () {
208208
if (this.computedState === false) {
209209
// If the form-group state is explicityly invalid, we return false
210210
return false

0 commit comments

Comments
 (0)