Skip to content

Commit

Permalink
Fix link building in ContactSupportLink component
Browse files Browse the repository at this point in the history
  • Loading branch information
gappc committed Apr 23, 2024
1 parent 9d5eff6 commit 9215698
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 9215698

Please sign in to comment.