Merge "Do not show entries for hidden tags"

This commit is contained in:
jenkins-bot 2020-04-13 14:14:25 +00:00 committed by Gerrit Code Review
commit 1d43c464ac

View file

@ -224,7 +224,10 @@
tag = changeTag.displayname;
}
} );
newTags.push( tag );
// Remove hidden tags (tags with no displayname)
if ( tag ) {
newTags.push( tag );
}
} );
rev.tags = newTags;
}