diff --git a/src/digital-components/textarea-question/textarea-question.vue b/src/digital-components/textarea-question/textarea-question.vue index fb0e90e02..ffea9a713 100644 --- a/src/digital-components/textarea-question/textarea-question.vue +++ b/src/digital-components/textarea-question/textarea-question.vue @@ -32,7 +32,7 @@ export default { my_textarea.addEventListener("input", () => { const total = remain - my_textarea.value.length; - const color = total < remain * 0.1 ? "red" : null; //Change text to red when the total remaining goes below 25; + const color = total < remain * 0.1 ? "red" : null; //Change text to red when the total remaining goes below 10%; remaining.innerHTML = `${total}/${this.maxLength} characters remaining`; remaining.style.color = color; }); diff --git a/src/layouts/customer-details/customer-details.vue b/src/layouts/customer-details/customer-details.vue index 03aadfacb..a23918284 100644 --- a/src/layouts/customer-details/customer-details.vue +++ b/src/layouts/customer-details/customer-details.vue @@ -2,7 +2,7 @@