prettier
prettier
This commit is contained in:
parent
634687c80e
commit
eeb438f003
2 changed files with 5 additions and 4 deletions
|
|
@ -227,8 +227,7 @@ export default {
|
|||
computed: {
|
||||
questionText() {
|
||||
const baseText =
|
||||
this.overrideQuestionText ||
|
||||
this.getCmsContent(this.cmsWidgetName, "QuestionText");
|
||||
this.overrideQuestionText || this.getCmsContent(this.cmsWidgetName, "QuestionText");
|
||||
return this.addOptionalText ? baseText + " (optional)" : baseText;
|
||||
},
|
||||
value: {
|
||||
|
|
|
|||
|
|
@ -385,8 +385,10 @@ export default {
|
|||
return this.getCmsContent("LossLocationQuestionWidget", "QuestionText");
|
||||
},
|
||||
morePolicyQuestionsWidgetName() {
|
||||
// State Farm may be the only one who uses this
|
||||
return this.parsedClientConfig.OverrideMorePolicyQuestions ? "MorePolicyQuestionsOverrideWidget" : "MorePolicyQuestionsWidget";
|
||||
// State Farm may be the only one who uses this
|
||||
return this.parsedClientConfig.OverrideMorePolicyQuestions
|
||||
? "MorePolicyQuestionsOverrideWidget"
|
||||
: "MorePolicyQuestionsWidget";
|
||||
},
|
||||
},
|
||||
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
||||
|
|
|
|||
Loading…
Reference in a new issue