summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-11-06 00:33:44 +0100
committerMar0xy <marie@kaifa.ch>2023-11-06 00:33:44 +0100
commitd8a9d72dbb3b2faeed0b412d0bd6505e5f17840c (patch)
tree6d8e3ec1c45ed105d973b46e9ef5817bf618035b /packages/frontend/src
parentchore: replace tabler icons with phosphor icons (diff)
downloadsharkey-d8a9d72dbb3b2faeed0b412d0bd6505e5f17840c.tar.gz
sharkey-d8a9d72dbb3b2faeed0b412d0bd6505e5f17840c.tar.bz2
sharkey-d8a9d72dbb3b2faeed0b412d0bd6505e5f17840c.zip
chore: correct the icons being used
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/components/MkNotification.vue4
-rw-r--r--packages/frontend/src/components/global/MkCustomEmoji.vue2
-rw-r--r--packages/frontend/src/components/global/MkEmoji.vue2
3 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue
index 6b47f9c341..7ab3a95f5b 100644
--- a/packages/frontend/src/components/MkNotification.vue
+++ b/packages/frontend/src/components/MkNotification.vue
@@ -9,8 +9,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkAvatar v-if="notification.type === 'pollEnded'" :class="$style.icon" :user="notification.note.user" link preview/>
<MkAvatar v-else-if="notification.type === 'note'" :class="$style.icon" :user="notification.note.user" link preview/>
<MkAvatar v-else-if="notification.type === 'achievementEarned'" :class="$style.icon" :user="$i" link preview/>
- <div v-else-if="notification.type === 'reaction:grouped'" :class="[$style.icon, $style.icon_reactionGroup]"><i class="ph-plus ph-bold ph-lg" style="line-height: 1;"></i></div>
- <div v-else-if="notification.type === 'renote:grouped'" :class="[$style.icon, $style.icon_renoteGroup]"><i class="ph-repeat ph-bold ph-lg" style="line-height: 1;"></i></div>
+ <div v-else-if="notification.type === 'reaction:grouped'" :class="[$style.icon, $style.icon_reactionGroup]"><i class="ph-smiley ph-bold ph-lg" style="line-height: 1;"></i></div>
+ <div v-else-if="notification.type === 'renote:grouped'" :class="[$style.icon, $style.icon_renoteGroup]"><i class="ph-rocket-launch ph-bold ph-lg" style="line-height: 1;"></i></div>
<img v-else-if="notification.type === 'test'" :class="$style.icon" :src="infoImageUrl"/>
<MkAvatar v-else-if="notification.user" :class="$style.icon" :user="notification.user" link preview/>
<img v-else-if="notification.icon" :class="[$style.icon, $style.icon_app]" :src="notification.icon" alt=""/>
diff --git a/packages/frontend/src/components/global/MkCustomEmoji.vue b/packages/frontend/src/components/global/MkCustomEmoji.vue
index 65d45f2534..10d7d93b01 100644
--- a/packages/frontend/src/components/global/MkCustomEmoji.vue
+++ b/packages/frontend/src/components/global/MkCustomEmoji.vue
@@ -87,7 +87,7 @@ function onClick(ev: MouseEvent) {
},
}, ...(props.menuReaction && react ? [{
text: i18n.ts.doReaction,
- icon: 'ph-plus ph-bold ph-lg',
+ icon: 'ph-smiley ph-bold ph-lg',
action: () => {
react(`:${props.name}:`);
},
diff --git a/packages/frontend/src/components/global/MkEmoji.vue b/packages/frontend/src/components/global/MkEmoji.vue
index 7fa3ce75a3..24655106ce 100644
--- a/packages/frontend/src/components/global/MkEmoji.vue
+++ b/packages/frontend/src/components/global/MkEmoji.vue
@@ -53,7 +53,7 @@ function onClick(ev: MouseEvent) {
},
}, ...(props.menuReaction && react ? [{
text: i18n.ts.doReaction,
- icon: 'ph-plus ph-bold ph-lg',
+ icon: 'ph-smiley ph-bold ph-lg',
action: () => {
react(props.emoji);
},