Skip to content

Commit 2f3ac23

Browse files
committed
add orgs to key names
1 parent 84a48bd commit 2f3ac23

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

client/directives/modals/settingsModal/forms/SSHKeysForm/SSHKeysFormView.jade

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ section.label-description
88
| .
99

1010
ol.list-bordered(
11-
ng-init = "keys = [\
12-
{username: 'Myztiq', fingerprint: '40:71:04:a8:3b:ea:a8:90:f6:99:6c:7a:22:f7:c0:15', avatar: 'https://avatars1.githubusercontent.com/u/495765'},\
13-
{username: 'podviaznikov', fingerprint: 'e2:81:ae:03:43:1a:ba:cf:4e:e0:79:37:69:40:58:56', avatar: 'https://avatars1.githubusercontent.com/u/429706'}\
14-
]"
11+
ng-init = "\
12+
keys = [\
13+
{username: 'Myztiq', fingerprint: '40:71:04:a8:3b:ea:a8:90:f6:99:6c:7a:22:f7:c0:15', avatar: 'https://avatars1.githubusercontent.com/u/495765'},\
14+
{username: 'podviaznikov', fingerprint: 'e2:81:ae:03:43:1a:ba:cf:4e:e0:79:37:69:40:58:56', avatar: 'https://avatars1.githubusercontent.com/u/429706'}\
15+
];\
16+
currentOrg = 'CodeNow'\
17+
"
1518
)
1619

1720
//- if no key exists for the current user
@@ -59,7 +62,9 @@ ol.list-bordered(
5962
xlink:href = "#icons-key"
6063
)
6164
.grid-block.vertical.p
62-
p.strong {{key.username}} User Key
65+
p.strong.text-overflow(
66+
title = "{{key.username}} User Key for {{currentOrg}}"
67+
) {{key.username}} User Key for {{currentOrg}}
6368
p.monospace.text-gray.text-overflow {{key.fingerprint}}
6469
a.grid-block.shrink.noscroll.align-center.btn.gray.btn-xs.btn-authorized(
6570
ng-include = "'SSHAuthorizeButton'"

0 commit comments

Comments
 (0)