mirror of https://github.com/status-im/consul.git
ui: Don't show policy datacenter selector for non-default partitions (#11656)
This commit is contained in:
parent
26341f0b05
commit
bda64f98b3
|
@ -0,0 +1,3 @@
|
|||
```release-note:feature
|
||||
ui: Don't offer a 'Valid Datacenters' option when editing policies for non-default partitions
|
||||
```
|
|
@ -105,6 +105,8 @@
|
|||
</PowerSelect>
|
||||
</label>
|
||||
{{else}}
|
||||
{{! only show Valid Datacenters for the default partition }}
|
||||
{{#if (eq (or partition 'default') 'default')}}
|
||||
<div class="type-toggle">
|
||||
<span>Valid datacenters</span>
|
||||
<label>
|
||||
|
@ -112,6 +114,7 @@
|
|||
<span>All</span>
|
||||
</label>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{#if isScoped }}
|
||||
<DataSource
|
||||
@src={{uri '/*/*/*/datacenters'}}
|
||||
|
|
Loading…
Reference in New Issue