diff --git a/src/digital-components/textarea-question/textarea-question.vue b/src/digital-components/textarea-question/textarea-question.vue index eda3a6f9c..78cf22b88 100644 --- a/src/digital-components/textarea-question/textarea-question.vue +++ b/src/digital-components/textarea-question/textarea-question.vue @@ -1,29 +1,31 @@ @@ -38,6 +40,10 @@ export default { default: 150, }, modelValue: String, + textAreaLabelCopy: { + type: String, + default: "text area", + }, }, // TODO: At some point in the future we should probably add the tie in to validation here in case the field must be populated for some other use cases setup() {}, @@ -83,7 +89,6 @@ export default { } .label-wrapper { display: flex; - align-items: center; label { span { color: $gray-500; diff --git a/src/layouts/customer-details/customer-details.vue b/src/layouts/customer-details/customer-details.vue index 08d547f96..48f7d2212 100644 --- a/src/layouts/customer-details/customer-details.vue +++ b/src/layouts/customer-details/customer-details.vue @@ -48,6 +48,7 @@ class="mb-4" v-model="techNotes" cmsWidgetName="TextAreaContentWidget" + textAreaLabelCopy="Customer Comments" maxLength="150" />