Merge pull request #2897 from coreos-inc/joseph.schorr/QS-42/notification-bug
Fix bug in reading the `updated_tags` on a notification
This commit is contained in:
commit
514cd42eec
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ angular.module('quay').factory('StringBuilderService', ['$sce', 'UtilService', f
|
||||||
|
|
||||||
'updated_tags': function(value) {
|
'updated_tags': function(value) {
|
||||||
if (!value) { return []; }
|
if (!value) { return []; }
|
||||||
return Object.getOwnPropertyNames(value);
|
return value.join(', ');
|
||||||
},
|
},
|
||||||
|
|
||||||
'kid': function(kid, metadata) {
|
'kid': function(kid, metadata) {
|
||||||
|
|
Reference in a new issue