From da9c77e3035e033f24713d73ddc2b486cb4a7ea7 Mon Sep 17 00:00:00 2001 From: hiteshkumar87 Date: Wed, 22 Nov 2023 20:10:24 +0530 Subject: [PATCH] CSR-1663 changing the component to enforce a max of 150 characters. --- src/digital-components/textarea-question/textarea-question.vue | 2 +- src/layouts/customer-details/customer-details.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/digital-components/textarea-question/textarea-question.vue b/src/digital-components/textarea-question/textarea-question.vue index aa81c8286..eeede3a63 100644 --- a/src/digital-components/textarea-question/textarea-question.vue +++ b/src/digital-components/textarea-question/textarea-question.vue @@ -35,7 +35,7 @@ export default { isRequired: Boolean, maxLength: { type: Number, - default: 250, + default: 150, }, modelValue: String, }, diff --git a/src/layouts/customer-details/customer-details.vue b/src/layouts/customer-details/customer-details.vue index 668bd0495..08d547f96 100644 --- a/src/layouts/customer-details/customer-details.vue +++ b/src/layouts/customer-details/customer-details.vue @@ -48,7 +48,7 @@ class="mb-4" v-model="techNotes" cmsWidgetName="TextAreaContentWidget" - maxLength="250" /> + maxLength="150" />