From 3846dc2f5dee69fc4ffbc052009a60e17d60e36b Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 21 Apr 2026 23:21:19 -0500 Subject: feat(v2.5.0): add caching, request deduplication, and performance improvements --- DomainDig/BatchResultsView.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'DomainDig/BatchResultsView.swift') diff --git a/DomainDig/BatchResultsView.swift b/DomainDig/BatchResultsView.swift index 6bf18c0..1e0333d 100644 --- a/DomainDig/BatchResultsView.swift +++ b/DomainDig/BatchResultsView.swift @@ -58,6 +58,9 @@ struct BatchResultRowView: View { .foregroundStyle(.primary) .lineLimit(1) Spacer(minLength: 8) + Text(result.resultSource.label.lowercased()) + .font(.system(.caption2, design: .monospaced)) + .foregroundStyle(.secondary) Text(result.quickStatus) .font(.system(.caption2, design: .monospaced)) .foregroundStyle(quickStatusColor) @@ -84,7 +87,7 @@ struct BatchResultRowView: View { if let errorMessage = result.errorMessage { Text(errorMessage) .font(.system(.caption2, design: .monospaced)) - .foregroundStyle(.red) + .foregroundStyle(result.status == .failed ? .red : .secondary) } } .frame(maxWidth: .infinity, alignment: .leading) -- cgit v1.2.3