Repository: incubator-airflow Updated Branches: refs/heads/master dedae8e07 -> 77b32a441
[AIRFLOW-2080] Use a log-out icon instead of a power button Some users think the existing log out icon will restart Airflow itself. Using the log out icon should avoid confusion. Closes #3010 from pingbat/patch-1 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/77b32a44 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/77b32a44 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/77b32a44 Branch: refs/heads/master Commit: 77b32a441b78abb090507541ef8130f34158a49c Parents: dedae8e Author: pingbat <[email protected]> Authored: Thu Feb 8 21:43:36 2018 +0100 Committer: Bolke de Bruin <[email protected]> Committed: Thu Feb 8 21:43:36 2018 +0100 ---------------------------------------------------------------------- airflow/www/templates/admin/master.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/77b32a44/airflow/www/templates/admin/master.html ---------------------------------------------------------------------- diff --git a/airflow/www/templates/admin/master.html b/airflow/www/templates/admin/master.html index 358c207..1f0020e 100644 --- a/airflow/www/templates/admin/master.html +++ b/airflow/www/templates/admin/master.html @@ -85,7 +85,7 @@ <ul class="nav navbar-nav navbar-right"> <li><a id="clock"></a></li> {% if current_user.is_authenticated %} - <li><a href="{{ url_for('airflow.logout') }}"><span data-toggle="tooltip" data-placement="left" title="Logout" class="glyphicon glyphicon-off"></span></a></li> + <li><a href="{{ url_for('airflow.logout') }}"><span data-toggle="tooltip" data-placement="left" title="Logout" class="glyphicon glyphicon-log-out"></span></a></li> {% endif %} </ul> <ul class="nav navbar-nav navbar-right">
