Skip to content

Commit

Permalink
Merge pull request #16895 from jmchilton/fix_rev_link
Browse files Browse the repository at this point in the history
Fix link to mercurial tip in tool shed 2.0.
  • Loading branch information
bgruening authored Oct 24, 2023
2 parents 424bbe7 + 02c1d29 commit 9dbf201
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 9dbf201

Please sign in to comment.