- if dataset has no doi, show normal landingpage in search site (vue component)

This commit is contained in:
Arno Kaimbacher 2021-06-02 11:19:27 +02:00
parent da06f84659
commit 9138090e14
4 changed files with 7 additions and 4 deletions

View file

@ -43,6 +43,9 @@
<a v-if="document.identifier && document.identifier.length > 0" target="_self" v-bind:href="'https://doi.'+ getDomainWithoutSubdomain() +'/' + document.identifier[0]" class="ng-binding">
{{ document.title_output }}
</a>
<a v-else target="_self" v-bind:href="'dataset/' + document.id" class="ng-binding">
{{ document.title_output }}
</a>
</h4>