summaryrefslogtreecommitdiff
path: root/DomainDig/BatchSweepSummaryView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
-rw-r--r--DomainDig/BatchSweepSummaryView.swift5
1 files changed, 4 insertions, 1 deletions
diff --git a/DomainDig/BatchSweepSummaryView.swift b/DomainDig/BatchSweepSummaryView.swift
index fda2bc5..61b3e37 100644
--- a/DomainDig/BatchSweepSummaryView.swift
+++ b/DomainDig/BatchSweepSummaryView.swift
@@ -12,7 +12,10 @@ struct BatchSweepSummaryView: View {
}
return summary.results.filter {
- ($0.changeSeverity ?? .low) >= .medium || $0.certificateWarningLevel != .none || $0.status == .failed
+ $0.quickStatus == "Changed" ||
+ $0.quickStatus == "High" ||
+ $0.certificateWarningLevel != .none ||
+ $0.status == .failed
}
}