diff options
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
| -rw-r--r-- | DomainDig/BatchSweepSummaryView.swift | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/DomainDig/BatchSweepSummaryView.swift b/DomainDig/BatchSweepSummaryView.swift index 61b3e37..43ffa74 100644 --- a/DomainDig/BatchSweepSummaryView.swift +++ b/DomainDig/BatchSweepSummaryView.swift @@ -11,12 +11,7 @@ struct BatchSweepSummaryView: View { return summary.results } - return summary.results.filter { - $0.quickStatus == "Changed" || - $0.quickStatus == "High" || - $0.certificateWarningLevel != .none || - $0.status == .failed - } + return summary.results.filter(\.hasMeaningfulChange) } var body: some View { |
