summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-11-04 14:51:43 +0100
committerMar0xy <marie@kaifa.ch>2023-11-04 14:51:43 +0100
commit83c64377fc8be569b5cdadcdb6a8bfdf923d4caf (patch)
tree867a3196aca0788d6c73ed35fd8ead8f8f384b97 /packages/frontend/src
parentupd: locales (diff)
downloadsharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.tar.gz
sharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.tar.bz2
sharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.zip
chore: replace icons on new menu
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/components/global/MkCustomEmoji.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/global/MkCustomEmoji.vue b/packages/frontend/src/components/global/MkCustomEmoji.vue
index 1e17bab849..65d45f2534 100644
--- a/packages/frontend/src/components/global/MkCustomEmoji.vue
+++ b/packages/frontend/src/components/global/MkCustomEmoji.vue
@@ -80,14 +80,14 @@ function onClick(ev: MouseEvent) {
text: `:${props.name}:`,
}, {
text: i18n.ts.copy,
- icon: 'ti ti-copy',
+ icon: 'ph-copy ph-bold ph-lg',
action: () => {
copyToClipboard(`:${props.name}:`);
os.success();
},
}, ...(props.menuReaction && react ? [{
text: i18n.ts.doReaction,
- icon: 'ti ti-plus',
+ icon: 'ph-plus ph-bold ph-lg',
action: () => {
react(`:${props.name}:`);
},