From ceac99c05f180d9008b75c9329822466ff60255b Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 22 Apr 2026 11:28:28 -0500 Subject: feat(v2.9.0): add risk scoring and deterministic insight engine * introduce domain risk assessment with transparent factors * add insight engine for actionable observations * implement cross-domain insights for workflows * improve DNS, subdomain, email, and TLS interpretation * classify change impact severity * include insights and risk in export --- DomainDig/BatchSweepSummaryView.swift | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'DomainDig/BatchSweepSummaryView.swift') 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 { -- cgit v1.2.3