Skip to content

Commit

Permalink
fix: Improved fix for XML URL links on report page
Browse files Browse the repository at this point in the history
Changes XML URL link on report page from <RouterLink> to a standard
HTML anchor.
  • Loading branch information
chrisarridge committed Jan 22, 2025
1 parent a2ae7ba commit db0b5db
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/ReportPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,7 @@
<RouterLink :to="`/organisation/${organisation.name}`">{{ organisation.title }}</RouterLink>
-
</template>
<RouterLink v-if="document" :href="document.url" :external="true">
{{ getDocumentFileName(document) }}
</RouterLink>
<a v-if="document" :href="document.url">{{ getDocumentFileName(document) }}</a>
<div v-if="dataset && isTestFile">{{ dataset.filename }}</div>
</h2>
<DocumentInfo v-if="dataset && dataset.report" :document="document" :report="dataset.report" />
Expand Down

0 comments on commit db0b5db

Please sign in to comment.