Skip to content

Commit 035d6dc

Browse files
djangolivogiorgis
andauthored
fix: strike bugs that are marked as closed in intermittent failure view (#8746)
Co-authored-by: Olivier Giorgis <[email protected]>
1 parent 58f5b62 commit 035d6dc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ui/intermittent-failures/helpers.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@ export const tableRowStyling = function tableRowStyling(state, bug) {
125125
color: 'rgb(117, 117, 117)',
126126
backgroundColor: 'rgba(0, 0, 0, 0.009)',
127127
};
128-
129-
if (bug.row.status === 'RESOLVED' || bug.row.status === 'VERIFIED') {
128+
if (
129+
bug.original.status === 'RESOLVED' ||
130+
bug.original.status === 'VERIFIED'
131+
) {
130132
style.textDecoration = 'line-through';
131133
return { style };
132134
}

0 commit comments

Comments
 (0)