aboutsummaryrefslogtreecommitdiff
path: root/resources/vue
diff options
context:
space:
mode:
authorThomas Hackl <hackl@data-quest.de>2026-01-09 12:37:44 +0100
committerThomas Hackl <hackl@data-quest.de>2026-01-09 12:37:44 +0100
commit575aff10765144d06f22f132333b3ebe83bfca60 (patch)
tree43522718acb5f810cf5e3e33b2672f1a705a63b7 /resources/vue
parent69ed5042edffd8e0a91222bfd0a688268ec2ae32 (diff)
Resolve "Kurzlinks: Kürzel sieht wie ein Link aus, ist aber keiner"
Closes #6149 Merge request studip/studip!4664
Diffstat (limited to 'resources/vue')
-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>