You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by sa...@apache.org on 2016/11/03 18:36:21 UTC

incubator-airflow git commit: [AIRFLOW-615] Set graph glyphicon first

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 43a41b6ec -> 26bab26ac


[AIRFLOW-615] Set graph glyphicon first

Closes #1867 from NeckBeardPrince/glyphicon_resort


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

Branch: refs/heads/master
Commit: 26bab26ac671e2e97d32052fe8605bfddf7564fa
Parents: 43a41b6
Author: Adam Stracener <Ad...@GMail.com>
Authored: Thu Nov 3 11:35:08 2016 -0700
Committer: Siddharth Anand <si...@yahoo.com>
Committed: Thu Nov 3 11:35:14 2016 -0700

----------------------------------------------------------------------
 airflow/www/templates/airflow/dags.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/26bab26a/airflow/www/templates/airflow/dags.html
----------------------------------------------------------------------
diff --git a/airflow/www/templates/airflow/dags.html b/airflow/www/templates/airflow/dags.html
index ff9b1bf..a5182e4 100644
--- a/airflow/www/templates/airflow/dags.html
+++ b/airflow/www/templates/airflow/dags.html
@@ -111,16 +111,16 @@
                 <td class="text-center" style="display:flex; flex-direction:row; justify-content:space-around;">
                 {% if dag %}
 
-                <!-- Tree -->
-                <a href="{{ url_for('airflow.tree', dag_id=dag.dag_id, num_runs=25) }}" title="Tree View">
-                    <span class="glyphicon glyphicon-tree-deciduous" aria-hidden="true" title="Tree View"></span>
-                </a>
-
                 <!-- Graph -->
                 <a href="{{ url_for('airflow.graph', dag_id=dag.dag_id) }}" title="Graph View">
                     <span class="glyphicon glyphicon-certificate" aria-hidden="true" title="Graph View"></span>
                 </a>
 
+                <!-- Tree -->
+                <a href="{{ url_for('airflow.tree', dag_id=dag.dag_id, num_runs=25) }}" title="Tree View">
+                    <span class="glyphicon glyphicon-tree-deciduous" aria-hidden="true" title="Tree View"></span>
+                </a>
+
                 <!-- Duration -->
                 <a href="{{ url_for('airflow.duration', dag_id=dag.dag_id) }}" title="Tasks Duration">
                     <span class="glyphicon glyphicon-stats" aria-hidden="true" title="Tasks Duration"></span>