We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e8654 commit a0ec076Copy full SHA for a0ec076
ui/shared/tabs/failureSummary/FailureSummaryTab.jsx
@@ -100,7 +100,10 @@ class FailureSummaryTab extends React.Component {
100
}
101
if (simpleCase.length === 0 && suggestion.bugs.all_others.length > 0) {
102
suggestion.bugs.all_others.forEach((bug) => {
103
- if (bug.summary.endsWith('single tracking bug')) {
+ if (
104
+ bug.summary.endsWith('single tracking bug') &&
105
+ bug.resolution !== 'FIXED'
106
+ ) {
107
simpleCase.push(bug);
108
109
});
0 commit comments