Skip to content

Commit

Permalink
Merge pull request #8991 from surveyjs/bug/8840-incorrect-date-firefox
Browse files Browse the repository at this point in the history
FireFox: An incomplete date is considered valid when only its first p…
  • Loading branch information
andrewtelnov authored Oct 30, 2024
2 parents 8800b88 + fb9fc90 commit 80aebe4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/survey-core/src/question_text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ export class QuestionTextModel extends QuestionTextBase {
this.updateRemainingCharacterCounter(event.target.value);
};
protected onBlurCore(event: any): void {
this.updateDateValidationMessage(event);
this.updateValueOnEvent(event);
this.updateRemainingCharacterCounter(event.target.value);
super.onBlurCore(event);
Expand Down

0 comments on commit 80aebe4

Please sign in to comment.