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.vue21
1 files changed, 0 insertions, 21 deletions
diff --git a/js/vue_components/IconLinkCompact.vue b/js/vue_components/IconLinkCompact.vue
deleted file mode 100644
index 1691c49b8..000000000
--- a/js/vue_components/IconLinkCompact.vue
+++ /dev/null
@@ -1,21 +0,0 @@
-<template>
- <li class="util only-in-compact">
- <a class="external icon-link"
- v-on:click="ctrl.markRead(item.id)"
- target="_blank"
- rel="noreferrer"
- v-bind:href="item.url"
- v-bind:title="t('news', 'Open website')"
- news-stop-propagation>
- </a>
- </li>
-</template>
-
-<script>
-
-export default {
- props: ['ctrl', 'item', 't'],
-};
-</script>
-
-