You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/04/21 16:20:25 UTC

[airflow] branch fix-grid-errors updated: Fix incorrect rebase

This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch fix-grid-errors
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/fix-grid-errors by this push:
     new 7bc1b829ee Fix incorrect rebase
7bc1b829ee is described below

commit 7bc1b829ee37d80d07b90493e8525389cc397ec5
Author: Brent Bovenzi <br...@gmail.com>
AuthorDate: Thu Apr 21 12:19:04 2022 -0400

    Fix incorrect rebase
---
 airflow/www/static/js/dag.js | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/airflow/www/static/js/dag.js b/airflow/www/static/js/dag.js
index 67031fba2b..0445e0686c 100644
--- a/airflow/www/static/js/dag.js
+++ b/airflow/www/static/js/dag.js
@@ -352,9 +352,6 @@ $('form[data-action]').on('submit', function submit(e) {
     } else if (form.map_index) {
       form.map_index.remove();
     }
-    if (form.map_indexes) {
-      form.map_indexes.value = mapIndex === undefined ? '' : mapIndex;
-    }
     form.action = $(this).data('action');
     form.submit();
   }