in js/details.js [275:294]
function addRec(ct, bugId, flagId, flagIdx, assignee, s, p, platform, msg, cmtIdx, title, flags, nisetter) {
let record = {
'date': ct, // NI Date
'bugid': bugId,
'flagid': flagId,
'flagidx': flagIdx,
'assignee': assignee,
'title': title,
'severity': s,
'priority': p,
'platform': platform,
'flags': flags,
'msg': msg,
'commentid': cmtIdx,
'nisetter': nisetter,
'checked': false
};
bugset.push(record);
return record;
}