diff --git a/src/common-components/textbox-question/textbox-question.spec.js b/src/common-components/textbox-question/textbox-question.spec.js index ad21cc90a..e92ed342d 100644 --- a/src/common-components/textbox-question/textbox-question.spec.js +++ b/src/common-components/textbox-question/textbox-question.spec.js @@ -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", }, }); diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index ff306b29c..cf12100c2 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -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");