Merge "Complete hide logic for Zuul CI comments in Gerrit"

This commit is contained in:
Zuul 2019-07-16 01:58:03 +00:00 committed by Gerrit Code Review
commit 4e050d981e

View File

@ -367,7 +367,7 @@ var ci_hide_ci_comments = function(comments) {
comments = ci_parse_comments();
}
$.each(comments, function(i, comment) {
if (comment.is_ci) {
if (comment.is_ci && !comment.is_trusted_ci) {
$(comment.ref).hide();
}
});