diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js index d973948be8..9a966df712 100644 --- a/etc/status/public_html/jquery.zuul.js +++ b/etc/status/public_html/jquery.zuul.js @@ -542,6 +542,11 @@ // Toggle showing/hiding the patchset when the header is // clicked. + if (e.target.nodeName.toLowerCase() === 'a') { + // Ignore clicks from gerrit patch set link + return; + } + // Grab the patchset panel var $panel = $(e.target).parents('.zuul-change'); var $body = $panel.children('.zuul-patchset-body');