summaryrefslogtreecommitdiff
path: root/DomainDig/BatchSweepSummaryView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
-rw-r--r--DomainDig/BatchSweepSummaryView.swift7
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 {