You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2017/09/18 18:38:13 UTC

incubator-airflow git commit: [AIRFLOW-1497] Reset hidden fields when changing connection type

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 1c5b0f5a3 -> 346968b92


[AIRFLOW-1497] Reset hidden fields when changing connection type

Closes #2507 from mrkm4ntr/airflow-1497


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/346968b9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/346968b9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/346968b9

Branch: refs/heads/master
Commit: 346968b925a3f7e5bee4b95a7c8571f7ab502a00
Parents: 1c5b0f5
Author: Shintaro Murakami <mr...@gmail.com>
Authored: Mon Sep 18 11:37:47 2017 -0700
Committer: Chris Riccomini <cr...@apache.org>
Committed: Mon Sep 18 11:38:02 2017 -0700

----------------------------------------------------------------------
 airflow/www/static/connection_form.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/346968b9/airflow/www/static/connection_form.js
----------------------------------------------------------------------
diff --git a/airflow/www/static/connection_form.js b/airflow/www/static/connection_form.js
index a8c70bc..0324bcf 100644
--- a/airflow/www/static/connection_form.js
+++ b/airflow/www/static/connection_form.js
@@ -41,7 +41,7 @@
         }
       }
       function connTypeChange(connectionType) {
-        $("div.form_group").removeClass("hide");
+        $("div.form-group").removeClass("hide");
         $.each($("[id^='extra__']"), function() {
             $(this).parent().parent().addClass('hide')
         });