FIX: calendar range was too wide (#6829)
This commit is contained in:
parent
e7cf642b1f
commit
72afefe211
|
@ -128,7 +128,7 @@
|
||||||
const sameTimezone = _isEqualZones(displayedTimezone, moment.tz.guess());
|
const sameTimezone = _isEqualZones(displayedTimezone, moment.tz.guess());
|
||||||
const inCalendarRange = dateTime.isBetween(
|
const inCalendarRange = dateTime.isBetween(
|
||||||
moment().subtract(2, "days"),
|
moment().subtract(2, "days"),
|
||||||
moment().add(2, "days")
|
moment().add(1, "days").endOf("day")
|
||||||
);
|
);
|
||||||
|
|
||||||
if (options.calendar && inCalendarRange) {
|
if (options.calendar && inCalendarRange) {
|
||||||
|
|
Loading…
Reference in New Issue