diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-11-04 14:51:43 +0100 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-11-04 14:51:43 +0100 |
| commit | 83c64377fc8be569b5cdadcdb6a8bfdf923d4caf (patch) | |
| tree | 867a3196aca0788d6c73ed35fd8ead8f8f384b97 /packages/frontend | |
| parent | upd: locales (diff) | |
| download | sharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.tar.gz sharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.tar.bz2 sharkey-83c64377fc8be569b5cdadcdb6a8bfdf923d4caf.zip | |
chore: replace icons on new menu
Diffstat (limited to 'packages/frontend')
| -rw-r--r-- | packages/frontend/src/components/global/MkCustomEmoji.vue | 4 |
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}:`); }, |