summaryrefslogtreecommitdiff
path: root/Hutch/Views/Repositories/CommitLogView.swift
diff options
context:
space:
mode:
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)