summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkLink.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/MkLink.vue')
-rw-r--r--packages/client/src/components/MkLink.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/client/src/components/MkLink.vue b/packages/client/src/components/MkLink.vue
index 649523abc2..6148ec6195 100644
--- a/packages/client/src/components/MkLink.vue
+++ b/packages/client/src/components/MkLink.vue
@@ -1,9 +1,10 @@
<template>
-<component :is="self ? 'MkA' : 'a'" ref="el" class="xlcxczvw _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
+<component
+ :is="self ? 'MkA' : 'a'" ref="el" class="xlcxczvw _link" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target"
:title="url"
>
<slot></slot>
- <i v-if="target === '_blank'" class="fas fa-external-link-square-alt icon"></i>
+ <i v-if="target === '_blank'" class="ti ti-external-link icon"></i>
</component>
</template>