diff options
| author | Christian Cleberg <[email protected]> | 2026-04-12 21:12:26 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-12 21:12:26 -0500 |
| commit | d89f2d52b623aad98df687865b263adeee7f5de9 (patch) | |
| tree | 0fa61b80a7c5553f43b65fd5326879b8e94b9462 /Hutch/Views/Home/HomeView.swift | |
| parent | 9cd99c3e1c7e2620c34bfd9e78931e3b2b63aa8a (diff) | |
| download | hutch-d89f2d52b623aad98df687865b263adeee7f5de9.tar.gz hutch-d89f2d52b623aad98df687865b263adeee7f5de9.tar.bz2 hutch-d89f2d52b623aad98df687865b263adeee7f5de9.zip | |
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
Diffstat (limited to 'Hutch/Views/Home/HomeView.swift')
| -rw-r--r-- | Hutch/Views/Home/HomeView.swift | 8 |
1 files changed, 8 insertions, 0 deletions
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<Destination: View>: 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) } } |
