ui: Add copyable IDs to the Role and Policy views (#9296)

This commit is contained in:
John Cowen 2020-11-30 17:28:33 +00:00 committed by GitHub
commit ca25033c56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 0 deletions

3
.changelog/9296.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:feature
ui: add copyable IDs to the Role and Policy views
```

View File

@ -42,6 +42,16 @@
</h1> </h1>
</BlockSlot> </BlockSlot>
<BlockSlot @name="content"> <BlockSlot @name="content">
{{#if (not create) }}
<div class="definition-table">
<dl>
<dt>Policy ID</dt>
<dd>
<CopyButton @value={{item.ID}} @name="Policy ID" @position="top-start" /> {{item.ID}}
</dd>
</dl>
</div>
{{/if}}
{{#if (eq (policy/typeof item) 'policy-management')}} {{#if (eq (policy/typeof item) 'policy-management')}}
{{ partial 'dc/acls/policies/view'}} {{ partial 'dc/acls/policies/view'}}
{{else}} {{else}}

View File

@ -38,6 +38,16 @@
</h1> </h1>
</BlockSlot> </BlockSlot>
<BlockSlot @name="content"> <BlockSlot @name="content">
{{#if (not create) }}
<div class="definition-table">
<dl>
<dt>Role ID</dt>
<dd>
<CopyButton @value={{item.ID}} @name="Role ID" @position="top-start" /> {{item.ID}}
</dd>
</dl>
</div>
{{/if}}
{{ partial 'dc/acls/roles/form'}} {{ partial 'dc/acls/roles/form'}}
</BlockSlot> </BlockSlot>
</AppView> </AppView>