Skip to content

Commit cdcd034

Browse files
authored
Update form-group.js
1 parent 25ccc23 commit cdcd034

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,9 @@ export default (resolve, reject) => {
313313
return this.$slots['label'] || this.label ? this.safeId('_BV_label_') : null
314314
},
315315
descriptionId() {
316-
return this.$slots['description'] || this.description ? this.safeId('_BV_description_') : null
316+
return this.$slots['description'] || this.description
317+
? this.safeId('_BV_description_')
318+
: null
317319
},
318320
hasInvalidFeedback() {
319321
// used for computing aria-describedby

0 commit comments

Comments
 (0)