fix incorrect "versions" to "version" (#4282)

This commit is contained in:
coolbot
2025-08-28 23:51:06 -07:00
committed by GitHub
parent debaf1381c
commit 7afe35a6cd
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ const quickActions: OverflowMenuOption[] = [
]
const versionUrl = computed(() => {
return `/${props.report.project.project_type}/${props.report.project.slug}/versions/${props.report.version.id}`
return `/${props.report.project.project_type}/${props.report.project.slug}/version/${props.report.version.id}`
})
</script>