Fix bug in reading the updated_tags on a notification

It is no longer an Object, but an array
This commit is contained in:
Joseph Schorr 2017-10-24 15:24:33 -04:00
parent 031d5eea1c
commit f4433920c1

View file

@ -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) {