summaryrefslogtreecommitdiffstats
path: root/js/vue_components/IconLinkCompact.vue
diff options
context:
space:
mode:
Diffstat (limited to 'js/vue_components/IconLinkCompact.vue')
-rw-r--r--js/vue_components/IconLinkCompact.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/vue_components/IconLinkCompact.vue b/js/vue_components/IconLinkCompact.vue
index 217e9001c..1691c49b8 100644
--- a/js/vue_components/IconLinkCompact.vue
+++ b/js/vue_components/IconLinkCompact.vue
@@ -5,7 +5,7 @@
target="_blank"
rel="noreferrer"
v-bind:href="item.url"
- title="<?php p($l->t('Open website')) ?>"
+ v-bind:title="t('news', 'Open website')"
news-stop-propagation>
</a>
</li>
@@ -14,7 +14,7 @@
<script>
export default {
- props: ['ctrl', 'item'],
+ props: ['ctrl', 'item', 't'],
};
</script>