Skip to content

Commit a0ec076

Browse files
committed
Bug 1965790 - do not hide other suggested bugs if single tracking bug has been fixed
1 parent c3e8654 commit a0ec076

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ui/shared/tabs/failureSummary/FailureSummaryTab.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ class FailureSummaryTab extends React.Component {
100100
}
101101
if (simpleCase.length === 0 && suggestion.bugs.all_others.length > 0) {
102102
suggestion.bugs.all_others.forEach((bug) => {
103-
if (bug.summary.endsWith('single tracking bug')) {
103+
if (
104+
bug.summary.endsWith('single tracking bug') &&
105+
bug.resolution !== 'FIXED'
106+
) {
104107
simpleCase.push(bug);
105108
}
106109
});

0 commit comments

Comments
 (0)