fix: Link in Contribution Messages

This commit is contained in:
Moriz Wahl 2022-10-28 08:59:13 +02:00
parent 5ef00bce97
commit 4327c600f9

View File

@ -1,7 +1,7 @@
<template>
<div class="mt-2">
<span v-for="({ type, text }, index) in linkifiedMessage" :key="index">
<b-link v-if="type === 'link'" :to="text">{{ text }}</b-link>
<b-link v-if="type === 'link'" :href="text">{{ text }}</b-link>
<span v-else>{{ text }}</span>
</span>
</div>