- rename of the folder for the dataset-detail.component
This commit is contained in:
parent
eb8803d7a8
commit
3b44926ce1
6 changed files with 7 additions and 7 deletions
|
@ -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;
|
|
@ -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>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue