This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 3e3457ed7ae1b7231dfdbcb058c89be2e42a230f Author: Jens Scheffler <[email protected]> AuthorDate: Sat Feb 24 11:28:24 2024 +0100 Fix regression on trigger form error display on form validation (#37672) (cherry picked from commit 8f5d7d243a8398a7002744e60d09243708a08288) --- airflow/www/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www/views.py b/airflow/www/views.py index 61d2fe584e..2334d69b8e 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -2230,6 +2230,7 @@ class Airflow(AirflowBaseView): form_fields=form_fields, **render_params, conf=request_conf, + form=form, ) flash(f"Triggered {dag_id}, it should start any moment now.")
