Update formatting.
This commit is contained in:
parent
bcd9e7dc81
commit
191ff1797a
2 changed files with 4 additions and 4 deletions
|
|
@ -43,7 +43,7 @@ describe("textboxQuestion.vue", () => {
|
||||||
},
|
},
|
||||||
mixins: [mockMixin],
|
mixins: [mockMixin],
|
||||||
propsData: {
|
propsData: {
|
||||||
cornerStyle: "rounded"
|
cornerStyle: "rounded",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -63,7 +63,7 @@ describe("textboxQuestion.vue", () => {
|
||||||
},
|
},
|
||||||
mixins: [mockMixin],
|
mixins: [mockMixin],
|
||||||
propsData: {
|
propsData: {
|
||||||
questionAlignment: "text"
|
questionAlignment: "text",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -112,10 +112,10 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
isRoundedPill() {
|
isRoundedPill() {
|
||||||
return this.cornerStyle === "rounded";
|
return this.cornerStyle === "rounded";
|
||||||
},
|
},
|
||||||
isQuestionAlignment() {
|
isQuestionAlignment() {
|
||||||
return this.questionAlignment === "text";
|
return this.questionAlignment === "text";
|
||||||
},
|
},
|
||||||
questionText() {
|
questionText() {
|
||||||
return this.getCmsContent(this.cmsWidgetName, "QuestionText");
|
return this.getCmsContent(this.cmsWidgetName, "QuestionText");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue