diff --git a/lib/tool_shed/webapp/frontend/src/components/RepositoryExplore.vue b/lib/tool_shed/webapp/frontend/src/components/RepositoryExplore.vue index 994ca74089af..4ab6279d44d7 100644 --- a/lib/tool_shed/webapp/frontend/src/components/RepositoryExplore.vue +++ b/lib/tool_shed/webapp/frontend/src/components/RepositoryExplore.vue @@ -22,7 +22,7 @@ const props = withDefaults(defineProps(), { }) 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