I also have problems with the timezone setting. Could it be related to the error?
I am in Argentina, every time I create a date element and save it, it adds 3 hours. This problem occurs with a datetime field. Is there in RS2.8.3 any way to configure timezone?
Is there a way to set the language to Spanish for the calendar?
Hello
“PHP DateTimeZone” has the value America/Argentina/Buenos_Aires. It changes it to UTC but the problem continues.
In the src/utils.js file change
humanDate(value) {
const date = new Date(value)
if (isNaN(date)) {
return value
}
return new Intl.DateTimeFormat('default', {dateStyle: 'medium'}).format(date);
},
by
humanDate(value) {
const date = new Date(value)
if (isNaN(date)) {
return value
}
return new Intl.DateTimeFormat('default', {dateStyle: 'medium', timeZone: 'UTC'}).format(date);
},