summaryrefslogtreecommitdiff
path: root/Hutch/Views/Repositories/CommitLogView.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-13 09:57:23 -0500
committerChristian Cleberg <[email protected]>2026-04-13 09:57:23 -0500
commit0e461a382257979037e8927e5f6b468635b0a7fe (patch)
tree0aa3a19f6f8f966b0e90f4874ed54359a7898107 /Hutch/Views/Repositories/CommitLogView.swift
parentee9f2904aa319231b7047fca3cb069f0c07019cd (diff)
downloadhutch-0e461a382257979037e8927e5f6b468635b0a7fe.tar.gz
hutch-0e461a382257979037e8927e5f6b468635b0a7fe.tar.bz2
hutch-0e461a382257979037e8927e5f6b468635b0a7fe.zip
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
Diffstat (limited to 'Hutch/Views/Repositories/CommitLogView.swift')
-rw-r--r--Hutch/Views/Repositories/CommitLogView.swift2
1 files changed, 1 insertions, 1 deletions
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)