Skip to content

Commit

Permalink
Fix issues shown on cases they shouldn't appear in (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo authored Sep 9, 2024
1 parent 4ee6e3f commit c82eeb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/lib/providers/test_result_issues.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Future<List<TestIssue>> testResultIssues(
.filter(
(issue) =>
issue.caseName == testResult.name ||
issue.templateId == testResult.templateId,
(issue.templateId == testResult.templateId &&
issue.templateId.isNotEmpty),
)
.toList(),
),
Expand Down

0 comments on commit c82eeb5

Please sign in to comment.