Date field problem

Hello

I am using nodejs-express/quasar on RS8.2.3.

I am using the “Data field” filter component.

The problem is that I don’t select 07/27 and it shows 07/26 as the image shows:

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?

I hope you can help me.

Thanks

Possible your timezone settings, you may check this in the upper right side of the app
and then find the find the “PHPDataeTimeZone” settings.
image

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);
    },

and it displayed correctly.

just add “timeZone: ‘UTC’”.

Regards