Skip to content

Commit 019ef82

Browse files
committed
fix(pci.project.ssh.keys): add some missing prefixes
ref: MANAGER-2540
1 parent 476c9fc commit 019ef82

File tree

1 file changed

+20
-5
lines changed
  • packages/manager/modules/pci/src/projects/project/ssh-keys

1 file changed

+20
-5
lines changed

packages/manager/modules/pci/src/projects/project/ssh-keys/ssh-keys.html

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,33 @@
11
<h1 data-translate="pci_projects_project_sshKeys_title"></h1>
22
<cui-message-container data-messages="$ctrl.messages"></cui-message-container>
3-
<oui-datagrid rows="$ctrl.keys" data-page-size="5">
3+
<oui-datagrid
4+
data-rows="$ctrl.keys"
5+
data-page-size="5">
46
<extra-top>
57
<a class="oui-button oui-button_secondary oui-button_icon-left mb-3" data-ui-sref="pci.projects.project.sshKeys.add">
68
<span class="oui-icon oui-icon-add" aria-hidden="true"></span>
79
<span data-translate="pci_projects_project_sshKeys_add"></span>
810
</a>
911
</extra-top>
10-
<oui-column data-title=":: 'pci_projects_project_sshKeys_name' | translate" data-property="name" data-type="string" data-searchable>
12+
<oui-column
13+
data-title=":: 'pci_projects_project_sshKeys_name' | translate"
14+
data-property="name"
15+
data-type="string"
16+
data-searchable>
1117
</oui-column>
12-
<oui-column data-title=":: 'pci_projects_project_sshKeys_public' | translate" data-property="publicKey" data-type="string" data-searchable>
13-
<oui-clipboard model="$value" class="mb-0"></oui-clipboard>
18+
<oui-column
19+
data-title=":: 'pci_projects_project_sshKeys_public' | translate"
20+
data-property="publicKey"
21+
data-type="string"
22+
data-searchable>
23+
<oui-clipboard
24+
class="mb-0"
25+
data-model="$value">
26+
</oui-clipboard>
1427
</oui-column>
15-
<oui-action-menu data-align="end" data-compact>
28+
<oui-action-menu
29+
data-align="end"
30+
data-compact>
1631
<oui-action-menu-item
1732
data-ui-sref="pci.projects.project.sshKeys.remove({ projectId: $ctrl.projectId, keyId: $row.id })">
1833
<span data-translate="pci_projects_project_sshKeys_remove"></span>

0 commit comments

Comments
 (0)