jgoedeke commented on issue #54006:
URL: https://github.com/apache/airflow/issues/54006#issuecomment-3269367670
I’m seeing what looks like the same root cause, but specifically for DAG
Params with `format: "date-time"` in the Trigger UI.
**Repro steps:**
- Airflow 3.0.6
- `[core] default_timezone = utc` on the server
- Browser in UTC+02
- DAG Param:
'start_time': Param(
title='Start time of something',
type=['string', 'null'],
format='date-time',
)
**Behavior:**
- When I open the Trigger UI and edit `start_time`:
* If I pick an hour, the value immediately shifts by -2h (my local
offset).
* If I then type minutes, the hour shifts again by -2h.
* This happens on every keystroke/change, so the time “walks” backwards
repeatedly.
- Makes it impossible to enter the intended value via the UI.
**Expected:**
- The UI should apply the offset conversion at most once (or better clearly
indicate the expected timezone), not on every edit.
**Workarounds:**
- Edit the datetime string with explicit offset (e.g.,
`2025-08-23T23:02:00.000Z:00+00:00`) in the JSON Configuration.
--
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]