Skip to content

Commit 7574bc5

Browse files
jacobmllr95pi0
authored andcommitted
Fix misspellings in props
This commit fixes two misspellings im component props that break Vue.js v2.5.11 compatibility. Closes bootstrap-vue#1469
1 parent 9de4a2f commit 7574bc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export default {
213213
},
214214
validated: {
215215
type: Boolean,
216-
value: false
216+
default: false
217217
}
218218
},
219219
computed: {

src/components/progress/progress-bar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default {
8080
},
8181
label: {
8282
type: String,
83-
value: null
83+
default: null
8484
},
8585
// $parent prop values take precedence over the following props
8686
// Which is why they are defaulted to null

0 commit comments

Comments
 (0)