This is an automated email from the ASF dual-hosted git repository. jscheffl pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push: new 8f5d7d243a Fix regression on trigger form error display on form validation (#37672) 8f5d7d243a is described below commit 8f5d7d243a8398a7002744e60d09243708a08288 Author: Jens Scheffler <95105677+jsche...@users.noreply.github.com> AuthorDate: Sat Feb 24 11:28:24 2024 +0100 Fix regression on trigger form error display on form validation (#37672) --- airflow/www/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/www/views.py b/airflow/www/views.py index 9b19f26fc6..e0bab56cef 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -2152,6 +2152,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.")