- rename of the folder for the dataset-detail.component

This commit is contained in:
kaimbacher 2022-01-14 16:49:31 +01:00
parent eb8803d7a8
commit 3b44926ce1
6 changed files with 7 additions and 7 deletions

View file

@ -47,11 +47,11 @@ export default class DatasetDetailComponent extends Vue {
let term;
if (typeof suggestion === "string") {
term = suggestion;
window.open("https://tethys.at/search/" + term);
window.open("https://tethys.at/search/" + term, "_self");
} else if (suggestion instanceof Suggestion) {
term = suggestion.value;
const type = suggestion.type;
window.open("https://tethys.at/search/" + term + "/" + type);
window.open("https://tethys.at/search/" + term + "/" + type, "_self");
}
} else {
let term;

View file

@ -56,7 +56,7 @@
<div class="column">
<label class="label">
{{ getCitation() }}
<a v-if="dataset.identifier" class="link-label" v-bind:href="'https://doi.org/' + dataset.identifier.value"
<a v-if="dataset.identifier" target="_blank" class="link-label" v-bind:href="'https://doi.org/' + dataset.identifier.value"
>({{ "https://doi.org/" + dataset.identifier.value }})</a
>
</label>