Skip to content

Commit

Permalink
Bug 1580287 - Don't set priority for intermittent bugs in Firefox's '…
Browse files Browse the repository at this point in the history
…Messaging System' and 'New Tab Page'
  • Loading branch information
Archaeopteryx committed Sep 12, 2019
1 parent 8d7c632 commit e2f1450
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ui/job-view/details/BugFiler.jsx
Expand Up @@ -427,6 +427,16 @@ export class BugFilerClass extends React.Component {
// Set no priority for crashes to get them included in triage meetings.
priority = '--';
}

// Bug in these components shall never get a priority automatically set
// to let the bugs show up during triage. See bug 1580287.
let noPriorityProdComp = [
{ "product" : "Firefox", "component" : "Messaging System" },
{ "product" : "Firefox", "component" : "New Tab Page" },
];
if (noPriorityProdComp.some(object => object["product"] == product && object["component"] == component)) {
priority = '--';
}

// Fetch product information from bugzilla to get version numbers, then
// submit the new bug. Only request the versions because some products
Expand Down

0 comments on commit e2f1450

Please sign in to comment.