Update formatting.

This commit is contained in:
Bryan Mauger 2022-11-04 16:54:14 -04:00
parent bcd9e7dc81
commit 191ff1797a
2 changed files with 4 additions and 4 deletions

View file

@ -43,7 +43,7 @@ describe("textboxQuestion.vue", () => {
},
mixins: [mockMixin],
propsData: {
cornerStyle: "rounded"
cornerStyle: "rounded",
},
});
@ -63,7 +63,7 @@ describe("textboxQuestion.vue", () => {
},
mixins: [mockMixin],
propsData: {
questionAlignment: "text"
questionAlignment: "text",
},
});

View file

@ -112,10 +112,10 @@ export default {
},
computed: {
isRoundedPill() {
return this.cornerStyle === "rounded";
return this.cornerStyle === "rounded";
},
isQuestionAlignment() {
return this.questionAlignment === "text";
return this.questionAlignment === "text";
},
questionText() {
return this.getCmsContent(this.cmsWidgetName, "QuestionText");