You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
Sets time zone. If you want to use user's computer time zone, pass null
However the code which implements this, will always cast the null into "UTC". Config.prototype._timeZone = function(val) { return ko.observable(val || 'UTC'); }
So passing null does not have the desired effect, and instead its reverted to UTC.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the documentation, its stated:
However the code which implements this, will always cast the null into "UTC".
Config.prototype._timeZone = function(val) { return ko.observable(val || 'UTC'); }
So passing null does not have the desired effect, and instead its reverted to UTC.
The text was updated successfully, but these errors were encountered: