parent
934cdecbd6
commit
ccb5bc8f1b
3 changed files with 11 additions and 0 deletions
|
@ -300,6 +300,10 @@ angular.module('quay').directive('entitySearch', function () {
|
|||
|
||||
template += '<span class="name">' + datum.value + '</span>';
|
||||
|
||||
if (datum.entity.title) {
|
||||
template += '<span class="title">' + datum.entity.title + '</span>';
|
||||
}
|
||||
|
||||
if (datum.entity.is_org_member === false && datum.entity.kind == 'user') {
|
||||
template += '<i class="fa fa-exclamation-triangle" title="User is outside the organization"></i>';
|
||||
}
|
||||
|
|
Reference in a new issue