There’s this bug on the DateTime field where selecting the last date (or dates on the bottom row) on the calendar doesn’t properly display the correct date on the input field.
My recording below tests by clearing the field then selecting the last day (31) of the month of march but it displays as 03/03/2025 instead of 03/31/2025
This doesn’t seem to be an issue if you select a date from the current selected month.
I notice this only seems happen whenever you switch the months and I assume it must be because the calendar adds another row so maybe that affects the displayed input.
I guess it’s quite noticeable this February since there are less rows.
@Emman Welcome to the forum, and thank you for the bug report and detailed reproduction!
I can confirm this is a bug, and I’ve submitted a PR to fix it. The fix will go live once it passes code review (usually just a day or two). Sorry about that!
In the meantime, a temporary workaround:
First select the first day of the month you want (March 1)
THEN select the actual day you want (March 31)
Thanks again for the report, and sorry for the inconvenience!
(If you’re curious, it was because we were accidentally setting the month and date separately. If the current month had fewer number of days than the month you picked, it would break. March has 31 days and Feb only 28, so that triggered the bug. It should be fixed now.)