AAE-45774 Shorten invalid date error message (#11920)

This commit is contained in:
Darren Thornton
2026-06-02 06:46:02 -05:00
committed by GitHub
parent 274ddb3098
commit 46b2d0380b
2 changed files with 2 additions and 2 deletions
@@ -84,7 +84,7 @@
/>
@if (cardViewDateTimeControl.hasError('matDatepickerParse')) {
<mat-error>
{{ 'FORM.FIELD.VALIDATOR.INVALID_DATE_FORMAT' | translate: { format: property.format ?? '' } }}
{{ 'FORM.FIELD.VALIDATOR.INVALID_DATE_FORMAT' | translate }}
</mat-error>
}
</mat-form-field>
+1 -1
View File
@@ -62,7 +62,7 @@
"INVALID_DECIMAL_NUMBER": "Use a decimal number format",
"INVALID_DECIMAL_PRECISION": "Incorrect decimal value, there should be a maximum of {{precision}} digits after the decimal point.",
"INVALID_DATE": "Use a different date format",
"INVALID_DATE_FORMAT": "Invalid date format, use the format: {{ format }}",
"INVALID_DATE_FORMAT": "Invalid date format.",
"INVALID_VALUE": "Enter a different value",
"NOT_GREATER_THAN": "Can't be greater than {{ maxValue }}",
"NOT_LESS_THAN": "Can't be less than {{ minValue }}",