ui: Don't show policy datacenter selector for non-default partitions (#11656)

pull/11666/head^2
John Cowen 2021-12-01 11:05:15 +00:00 committed by GitHub
parent 26341f0b05
commit bda64f98b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

3
.changelog/11656.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:feature
ui: Don't offer a 'Valid Datacenters' option when editing policies for non-default partitions
```

View File

@ -105,6 +105,8 @@
</PowerSelect> </PowerSelect>
</label> </label>
{{else}} {{else}}
{{! only show Valid Datacenters for the default partition }}
{{#if (eq (or partition 'default') 'default')}}
<div class="type-toggle"> <div class="type-toggle">
<span>Valid datacenters</span> <span>Valid datacenters</span>
<label> <label>
@ -112,6 +114,7 @@
<span>All</span> <span>All</span>
</label> </label>
</div> </div>
{{/if}}
{{#if isScoped }} {{#if isScoped }}
<DataSource <DataSource
@src={{uri '/*/*/*/datacenters'}} @src={{uri '/*/*/*/datacenters'}}