diff --git a/src/components/ChangeLog.vue b/src/components/ChangeLog.vue index f5db89d..6dc87ab 100644 --- a/src/components/ChangeLog.vue +++ b/src/components/ChangeLog.vue @@ -2,6 +2,7 @@ interface Commit { sha: string created: string + html_url: string commit: { message: string } @@ -34,6 +35,7 @@ const { isFetching, error, data } = useFetch('https://git.thehrz.net/api/v1/repo v-for="commit in data" :key="commit.commit.message" :title="commit.commit.message" :subtitle="`${commit.sha.slice(0, 6)} ${commit.created}`" + :to="commit.html_url" />