From d89f2d52b623aad98df687865b263adeee7f5de9 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 12 Apr 2026 21:12:26 -0500 Subject: feat: add build log search and jump-to-error navigation Implements: https://todo.sr.ht/~ccleberg/hutch/29 Implements: https://todo.sr.ht/~ccleberg/hutch/30 --- Hutch/Views/Home/HomeView.swift | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Hutch/Views/Home') diff --git a/Hutch/Views/Home/HomeView.swift b/Hutch/Views/Home/HomeView.swift index da58587..42a6737 100644 --- a/Hutch/Views/Home/HomeView.swift +++ b/Hutch/Views/Home/HomeView.swift @@ -795,7 +795,15 @@ private struct HomeAttentionLinkRow: View { .padding(.horizontal, 8) .padding(.vertical, 4) .background(Color(.secondarySystemFill), in: Capsule()) + + if action != nil { + Image(systemName: "chevron.right") + .font(.caption.weight(.semibold)) + .foregroundStyle(.tertiary) + } } + .frame(maxWidth: .infinity, alignment: .leading) + .contentShape(Rectangle()) .padding(.vertical, 2) } } -- cgit v1.2.3