updated env when we are local

This commit is contained in:
Tarek Rached 2014-09-09 13:29:42 -07:00
parent ae2a09ab5e
commit 609887887e
3 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
<header>
<h1>druid {{ env }}
<h1>druid {{ env ? env : 'cluster' }}
<span
class="rule-editor-link"
ng-controller="ClusterConfigCtrl"
tooltip="edit {{ env }} cluster configuration"
tooltip="edit {{ env ? env : 'cluster' }} cluster configuration"
tooltip-trigger="mouseenter"
tooltip-placement="bottom"
>

View File

@ -1,5 +1,5 @@
<header>
<h1>druid {{ env }}</h1>
<h1>druid {{ env ? env : 'cluster' }}</h1>
<site-nav></site-nav>
</header>

View File

@ -1,5 +1,5 @@
<header>
<h1>druid {{ env }}</h1>
<h1>druid {{ env ? env : 'cluster' }}</h1>
<site-nav></site-nav>
</header>