Fix: filtering for dates now works again

This commit is contained in:
Pieter Vander Vennet 2024-09-20 15:27:04 +02:00
parent 75a8ef5cb8
commit bea9f66b9a
3 changed files with 25 additions and 13 deletions

View file

@ -68,7 +68,7 @@ export abstract class Validator {
}
public getPlaceholder() {
return Translations.t.validation[this.name].description
return Translations.t.validation[this.name]?.description
}
public isValid(_: string, getCountry?: () => string): boolean {