in js/triage.js [355:363]
function updateBotList(divId, divIndex, totalBugs, searchUrl) {
if (totalBugs == 0) {
$("#ubdata" + divIndex).replaceWith("");
return;
}
$("#ubdata" + divIndex).replaceWith("<div class='ubdata'><a target='_buglist' href=\"" + searchUrl
+ "\">" + totalBugs + "</a><div class='updata sub'><abbr title=\"UpdateBot bug(s) in Bugzilla with no `Severity` set\">UB</abbr></div></div>" );
}