Fix bug in reading the updated_tags
on a notification
It is no longer an Object, but an array
This commit is contained in:
parent
031d5eea1c
commit
f4433920c1
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) {
|
||||
if (!value) { return []; }
|
||||
return Object.getOwnPropertyNames(value);
|
||||
return value.join(', ');
|
||||
},
|
||||
|
||||
'kid': function(kid, metadata) {
|
||||
|
|
Reference in a new issue