We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70da357 commit d121940Copy full SHA for d121940
1 file changed
projects/bootstrapcomponents/src/calendar/calendar.ts
@@ -132,7 +132,7 @@ export class ServoyBootstrapCalendar extends ServoyBootstrapBaseCalendar {
132
super.pushUpdate();
133
}
134
135
- if ((event !== '' && ((this.minDate && this.minDate > event) || (this.maxDate && this.maxDate < event))) || !this.isValidDate(event)) {
+ if (event !== '' && ((this.minDate && this.minDate > event) || (this.maxDate && this.maxDate < event) || !this.isValidDate(event))) {
136
// revert to old value
137
this.svyFormat.writeValue(this.dataProviderID);
138
0 commit comments