mirror of https://github.com/apache/druid.git
updated env when we are local
This commit is contained in:
parent
ae2a09ab5e
commit
609887887e
|
@ -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"
|
||||
>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<header>
|
||||
<h1>druid {{ env }}</h1>
|
||||
<h1>druid {{ env ? env : 'cluster' }}</h1>
|
||||
<site-nav></site-nav>
|
||||
</header>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<header>
|
||||
<h1>druid {{ env }}</h1>
|
||||
<h1>druid {{ env ? env : 'cluster' }}</h1>
|
||||
<site-nav></site-nav>
|
||||
</header>
|
||||
|
||||
|
|
Loading…
Reference in New Issue