app/tabs/important.mjs (18 lines of code) (raw):
import { _ } from "util";
import * as BugList from "buglist";
import * as Blockers from "buglists/blockers";
import * as Criticals from "buglists/criticals";
import * as Regressions from "buglists/regressions";
import * as TopCrashers from "buglists/topcrashers";
import * as Tracked from "buglists/tracked";
export function initUI() {
const $content = _("#important-content");
let $group = BugList.newGroup($content);
Blockers.init($group, true);
Criticals.init($group, true);
TopCrashers.init($group, true);
$group = BugList.newGroup($content);
Tracked.init($group, true);
$group = BugList.newGroup($content);
Regressions.init($group, true);
}