From c37ed89a7339f9846500d49af39066ea79e8b8fe Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 28 Jun 2025 15:57:09 +0800 Subject: [PATCH] E-Invoice - Minor amendment requested by Harry on TIN length validation --- .../vue/components/general/forms/ValidationErrorComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/vue/components/general/forms/ValidationErrorComponent.vue b/resources/assets/vue/components/general/forms/ValidationErrorComponent.vue index 83690ed8..231668c1 100644 --- a/resources/assets/vue/components/general/forms/ValidationErrorComponent.vue +++ b/resources/assets/vue/components/general/forms/ValidationErrorComponent.vue @@ -26,7 +26,7 @@ required: 'this field is required', email: 'enter a valid email address', minLength: 'this field must have at least', - maxLength: 'this field must not exceed', + maxLength: 'this field must have at most', minValue: 'this field must at least be', sameAs: 'this field must match the', numeric: 'this field can only contain numbers',