summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-06-21 18:11:47 +0100
committerdakkar <dakkar@thenautilus.net>2024-06-22 15:53:13 +0100
commit0b72513ce57a67f1d9532f78173291ded36b265c (patch)
tree175e4c5bfe689cd4aee2aa14e9a48d36170f2c06 /packages/frontend/src/pages
parentreplaced ti-hourglass-empty and ti-search (diff)
downloadsharkey-0b72513ce57a67f1d9532f78173291ded36b265c.tar.gz
sharkey-0b72513ce57a67f1d9532f78173291ded36b265c.tar.bz2
sharkey-0b72513ce57a67f1d9532f78173291ded36b265c.zip
replaced ti-external-link
Diffstat (limited to 'packages/frontend/src/pages')
-rw-r--r--packages/frontend/src/pages/admin-file.vue2
-rw-r--r--packages/frontend/src/pages/admin/queue.vue2
-rw-r--r--packages/frontend/src/pages/instance-info.vue2
-rw-r--r--packages/frontend/src/pages/page-editor/page-editor.vue2
4 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/pages/admin-file.vue b/packages/frontend/src/pages/admin-file.vue
index d57d2798c4..dca7ded646 100644
--- a/packages/frontend/src/pages/admin-file.vue
+++ b/packages/frontend/src/pages/admin-file.vue
@@ -120,7 +120,7 @@ async function toggleIsSensitive(v) {
const headerActions = computed(() => [{
text: i18n.ts.openInNewTab,
- icon: 'ph-arrow-square-out ph-bold ph-lg',
+ icon: 'ti ti-external-link',
handler: () => {
window.open(file.value.url, '_blank', 'noopener');
},
diff --git a/packages/frontend/src/pages/admin/queue.vue b/packages/frontend/src/pages/admin/queue.vue
index bd8704bae6..94eac919d1 100644
--- a/packages/frontend/src/pages/admin/queue.vue
+++ b/packages/frontend/src/pages/admin/queue.vue
@@ -53,7 +53,7 @@ function promoteAllQueues() {
const headerActions = computed(() => [{
asFullButton: true,
- icon: 'ph-arrow-square-out ph-bold ph-lg',
+ icon: 'ti ti-external-link',
text: i18n.ts.dashboard,
handler: () => {
window.open(config.url + '/queue', '_blank', 'noopener');
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue
index 1a9c4497be..a8929a71b0 100644
--- a/packages/frontend/src/pages/instance-info.vue
+++ b/packages/frontend/src/pages/instance-info.vue
@@ -261,7 +261,7 @@ fetch();
const headerActions = computed(() => [{
text: `https://${props.host}`,
- icon: 'ph-arrow-square-out ph-bold ph-lg',
+ icon: 'ti ti-external-link',
handler: () => {
window.open(`https://${props.host}`, '_blank', 'noopener');
},
diff --git a/packages/frontend/src/pages/page-editor/page-editor.vue b/packages/frontend/src/pages/page-editor/page-editor.vue
index 4ac7569e3d..1f7a8a0889 100644
--- a/packages/frontend/src/pages/page-editor/page-editor.vue
+++ b/packages/frontend/src/pages/page-editor/page-editor.vue
@@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
<MkSpacer :contentMax="700">
<div class="jqqmcavi">
- <MkButton v-if="pageId" class="button" inline link :to="`/@${ author.username }/pages/${ currentName }`"><i class="ph-arrow-square-out ph-bold ph-lg"></i> {{ i18n.ts._pages.viewPage }}</MkButton>
+ <MkButton v-if="pageId" class="button" inline link :to="`/@${ author.username }/pages/${ currentName }`"><i class="ti ti-external-link"></i> {{ i18n.ts._pages.viewPage }}</MkButton>
<MkButton v-if="!readonly" inline primary class="button" @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
<MkButton v-if="pageId" inline class="button" @click="duplicate"><i class="ti ti-copy"></i> {{ i18n.ts.duplicate }}</MkButton>
<MkButton v-if="pageId && !readonly" inline class="button" danger @click="del"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>