We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9bb036 commit a6620c4Copy full SHA for a6620c4
1 file changed
projects/bootstrapcomponents/src/calendar/calendar.ts
@@ -153,7 +153,7 @@ export class ServoyBootstrapCalendar extends ServoyBootstrapBaseCalendar {
153
super.pushUpdate();
154
}
155
156
- 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))) {
157
// revert to old value
158
this.svyFormat.writeValue(this.dataProviderID);
159
0 commit comments