Skip to content

Commit

Permalink
Fix rev link.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Oct 20, 2023
1 parent eecaeb7 commit 02c1d29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const props = withDefaults(defineProps<RepositoryExploreProps>(), {
})
const changelog = computed(() => `/repos/${props.repository.owner}/${[props.repository.name]}/shortlog`)
const contents = computed(() => `/repos/${props.repository.owner}/${[props.repository.name]}/tip`)
const contents = computed(() => `/repos/${props.repository.owner}/${[props.repository.name]}/rev/tip`)
function navigate(location: string | null | undefined) {
if (location) {
window.location.href = location
Expand Down

0 comments on commit 02c1d29

Please sign in to comment.