shashbha14 opened a new pull request, #67253: URL: https://github.com/apache/airflow/pull/67253
Closes #67243 When using "Trigger again with this config", any changes made to params in the trigger form were ignored and the original conf from the previous run was submitted instead. The useEffect that syncs the param store's conf back into the form field had a `!prefillConfig` guard, which blocked it from running when "Trigger again" was used. So editing a param via the UI updated the store but the form field stayed on the original value. Removed the guard so the form always stays in sync with the store, and removed prefillConfig from the dependency array since it is no longer used inside that effect. > I used Claude (claude.ai) as an AI assistant for parts of this implementation.. -- 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]
