fix link in admin interface

This commit is contained in:
Moriz Wahl 2022-10-28 09:00:15 +02:00
parent 4327c600f9
commit 235b58255f

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>