potiuk commented on PR #29395: URL: https://github.com/apache/airflow/pull/29395#issuecomment-1421376616
I checked the behviour of the grid datepicker @pierrejeambrun and it works fine without warnings. Even if the date is "isoFormatWithoutTZ", it produces a valid RFC3339 timestamp:  This is a valid rfc3339.txt: ```python from rfc3339_validator import validate_rfc3339 validate_rfc3339('2023-02-11T21:00:00Z') True ``` Because it is used like this: ``` (localDate: string) => moment(localDate).utc().format(), ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
