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> <header>
<h1>druid {{ env }} <h1>druid {{ env ? env : 'cluster' }}
<span <span
class="rule-editor-link" class="rule-editor-link"
ng-controller="ClusterConfigCtrl" ng-controller="ClusterConfigCtrl"
tooltip="edit {{ env }} cluster configuration" tooltip="edit {{ env ? env : 'cluster' }} cluster configuration"
tooltip-trigger="mouseenter" tooltip-trigger="mouseenter"
tooltip-placement="bottom" tooltip-placement="bottom"
> >

View File

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

View File

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