aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--resources/vue/apps/short-urls/ShortUrlList.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/vue/apps/short-urls/ShortUrlList.vue b/resources/vue/apps/short-urls/ShortUrlList.vue
index 6aaf96a..4d7ee92 100644
--- a/resources/vue/apps/short-urls/ShortUrlList.vue
+++ b/resources/vue/apps/short-urls/ShortUrlList.vue
@@ -54,7 +54,10 @@
@click.prevent="copyToClipboard(shortUrl.meta['alias-link'])">
<studip-icon shape="clipboard" />
</button>
- <a :href="store.getShortUrl(shortUrl.attributes.alias)" :title="$gettext('Titel des Kurzlinks')">
+ <a :href="shortUrl.meta['alias-link']"
+ :title="$gettext('Titel des Kurzlinks')"
+ target="_blank"
+ >
{{ shortUrl.attributes.alias }}
</a>
</td>