Merge pull request #83 from Safelite/enhancement/add-required-warning
Specify inputId prop as required
This commit is contained in:
commit
f309edf660
1 changed files with 5 additions and 2 deletions
|
|
@ -65,7 +65,10 @@ export default {
|
|||
default: "",
|
||||
},
|
||||
modelValue: String,
|
||||
inputId: String,
|
||||
inputId: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
isDisabled: Boolean,
|
||||
isRequired: Boolean,
|
||||
hasIcon: Boolean, // If input has an icon
|
||||
|
|
@ -122,7 +125,7 @@ export default {
|
|||
};
|
||||
},
|
||||
computed: {
|
||||
questionText() {
|
||||
questionText() {
|
||||
return this.getCmsContent(this.cmsWidgetName, "QuestionText");
|
||||
},
|
||||
value: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue