[FullCalendar Reactive] How to resolve the error that occurs in luxon_min when timeZone is specified?
fullcalendar-reactive
Reactive icon
Forge component by André Cabral
Application Type
Reactive
Service Studio Version
11.14.8 (Build 58515)

When I specify timeZone in AdvancedOptions like " timeZone:'Asia / Tokyo' ", I got the following error:

"Cannot read properties of undefined (reading'DateTime')"

It seems that the following "t" of luxon_min included in FullCalendar Reactive is undefined.

n.prototype.timestampToArray = function(e) {
    return [(n = t.DateTime.fromMillis(e, {
        zone: this.timeZoneName
    })).year, n.month - 1, n.day, n.hour, n.minute, n.second, n.millisecond];
    var n
}

Is there a way to get rid of the error?

I'm sorry.
There was an unnecessary space in the Advanced Options settings.
However, removing this space will result in the same error.
Here are the settings with the spaces removed.
"timeZone:'Asia/Tokyo'"

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.