Skip to content

Commit

Permalink
Merge pull request #105 from PavlidisLab/new-tabs
Browse files Browse the repository at this point in the history
new tabs for datasets
  • Loading branch information
oganm authored Jun 18, 2024
2 parents 556e470 + 82c9a71 commit e3a0c3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DatasetPreview.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="py-3">
<h3> <a v-bind:href="datasetUrl">{{ dataset.shortName }}</a>: {{ dataset.name }}</h3>
<h3> <a v-bind:href="datasetUrl" target="_blank">{{ dataset.shortName }}</a>: {{ dataset.name }}</h3>
<v-chip v-for="term in includedTerms" :key="getId(term)"
@[getClickEventName(term)]="handleChipClick(term)"
small :color="getChipColor(term.objectClass)"
Expand Down
2 changes: 1 addition & 1 deletion src/views/Browser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<span v-else :key="h.value">{{ h.text }}</span>
</template>
<template v-slot:item.shortName="{item}">
<a :href="getUrl(item)">
<a :href="getUrl(item)" target="_blank">
{{ item.shortName }}
</a>
</template>
Expand Down

0 comments on commit e3a0c3f

Please sign in to comment.