Refactoring: cleanup, scroll questions into view, add placeholders

This commit is contained in:
Pieter Vander Vennet 2023-05-06 01:23:55 +02:00
parent 55e12c32e5
commit 7e3d0e6a79
16 changed files with 217 additions and 1181 deletions

View file

@ -52,6 +52,10 @@ export abstract class Validator {
}
}
public getPlaceholder(){
return Translations.t.validation[this.name].description
}
public isValid(string: string, requestCountry?: () => string): boolean {
return true
}