From f71ee67ee104bc60bec68c2b464a1c5fc0e2e91f Mon Sep 17 00:00:00 2001 From: Kyle Filz Date: Sat, 7 Sep 2024 21:04:17 -0500 Subject: [PATCH] fix: correct github commit after link in commit list --- src/components/panels/Machine/UpdatePanel/GitCommitsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue b/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue index cc11e51d5..b0e6f554d 100644 --- a/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue +++ b/src/components/panels/Machine/UpdatePanel/GitCommitsList.vue @@ -103,7 +103,7 @@ export default class GitCommitsList extends Mixins(BaseMixin) { } get linkToGithub() { - return `https://github.com/${this.repo?.owner}/${this.repo?.name}/commits/${this.repo?.branch}/?after=${this.lastCommit?.sha}+0` + return `https://github.com/${this.repo?.owner}/${this.repo?.repo_name}/commits/${this.repo?.branch}/?after=${this.lastCommit?.sha}+0` } get overlayScrollbarsStyle() {