Skip to content

Commit

Permalink
Update tracker report
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira committed Oct 16, 2023
1 parent 43790e1 commit af7aa02
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/TrackerReport.global.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
<span>My issue is with:</span>
<ul class="mx-5 my-2">
<li v-for="item in issue_trackers">
<a :href="item.url">{{ item.label }}</a>
<a
:href="item.url"
target="_blank"
>
{{ item.label }}
</a>
<span
v-if="item.description"
class="text-sm"
Expand Down Expand Up @@ -72,7 +77,7 @@ function openTracker() {
if (issue_trackers) {
isModalVisible.value = true
} else {
window.open(TAXONPAGES_ISSUE_TRACKER, '_self')
window.open(TAXONPAGES_ISSUE_TRACKER, '_blank')
}
}
</script>

0 comments on commit af7aa02

Please sign in to comment.