Skip to content

Commit

Permalink
Merge pull request #566 from noi-techpark/fix-contact-support-link
Browse files Browse the repository at this point in the history
Fix link building in ContactSupportLink component
  • Loading branch information
RudiThoeni committed Apr 24, 2024
2 parents ad843cd + 9215698 commit 3fea431
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion databrowser/src/components/contact/ContactSupportLink.vue
Expand Up @@ -5,7 +5,9 @@ SPDX-License-Identifier: AGPL-3.0-or-later
-->

<template>
<a :href="t('contact.emailSupport')">{{ t('contact.emailSupport') }}</a>
<a :href="`mailto:${t('contact.emailSupport')}`">
{{ t('contact.emailSupport') }}
</a>
</template>

<script setup lang="ts">
Expand Down

0 comments on commit 3fea431

Please sign in to comment.