Skip to content

Commit

Permalink
IBX-8527: [Hide later] Error in console when typing the time
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasOsti committed Jul 31, 2024
1 parent ebf5dde commit 418570d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class DateTimePicker {
flatpickrDate.setHours(value);
}

if (this.flatpickrConfig.minDate.getTime() > flatpickrDate.getTime()) {
if (this.flatpickrInstance.config.minDate.getTime() > flatpickrDate.getTime()) {
return;
}

Expand Down

0 comments on commit 418570d

Please sign in to comment.