From 0e461a382257979037e8927e5f6b468635b0a7fe Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 13 Apr 2026 09:57:23 -0500 Subject: feat: add power user actions Implements: https://todo.sr.ht/~ccleberg/hutch/52 Implements: https://todo.sr.ht/~ccleberg/hutch/53 Implements: https://todo.sr.ht/~ccleberg/hutch/54 --- Hutch/Views/Repositories/CommitLogView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hutch/Views/Repositories/CommitLogView.swift') diff --git a/Hutch/Views/Repositories/CommitLogView.swift b/Hutch/Views/Repositories/CommitLogView.swift index d63c5eb..bc8ccc9 100644 --- a/Hutch/Views/Repositories/CommitLogView.swift +++ b/Hutch/Views/Repositories/CommitLogView.swift @@ -7,7 +7,7 @@ struct CommitLogView: View { List { ForEach(viewModel.commits) { commit in NavigationLink(value: commit) { - CommitRowView(commit: commit) + CommitRowView(commit: commit, repository: viewModel.repository) } .task { await viewModel.loadMoreCommitsIfNeeded(currentItem: commit) -- cgit v1.2.3