From 191ff1797a47ec06f90377bb62abecd8cc785a98 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Fri, 4 Nov 2022 16:54:14 -0400 Subject: [PATCH] Update formatting. --- .../textbox-question/textbox-question.spec.js | 4 ++-- src/common-components/textbox-question/textbox-question.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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");