diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-22 13:34:55 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:32 +0100 |
| commit | df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658 (patch) | |
| tree | ca9f220f8262a2716424d4a68e67b04c8d668d4e /packages/frontend/src/components/MkNotification.vue | |
| parent | replaced ti-arrow-back-up ti-quote ti-send (diff) | |
| download | sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.tar.gz sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.tar.bz2 sharkey-df26b6501d2bcd5bb7f27fc69d9aae4bdd5d0658.zip | |
replaced a bunch of ti-*
Diffstat (limited to 'packages/frontend/src/components/MkNotification.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index cb54765de7..8917c685ca 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -34,13 +34,13 @@ SPDX-License-Identifier: AGPL-3.0-only <i v-else-if="notification.type === 'followRequestAccepted'" class="ti ti-check"></i> <i v-else-if="notification.type === 'renote'" class="ti ti-repeat"></i> <i v-else-if="notification.type === 'reply'" class="ti ti-arrow-back-up"></i> - <i v-else-if="notification.type === 'mention'" class="ph-at ph-bold ph-lg"></i> + <i v-else-if="notification.type === 'mention'" class="ti ti-at"></i> <i v-else-if="notification.type === 'quote'" class="ti ti-quote"></i> - <i v-else-if="notification.type === 'pollEnded'" class="ph-chart-bar-horizontal ph-bold ph-lg"></i> - <i v-else-if="notification.type === 'achievementEarned'" class="ph-trophy ph-bold ph-lg"></i> + <i v-else-if="notification.type === 'pollEnded'" class="ti ti-chart-arrows"></i> + <i v-else-if="notification.type === 'achievementEarned'" class="ti ti-medal"></i> <template v-else-if="notification.type === 'roleAssigned'"> <img v-if="notification.role.iconUrl" style="height: 1.3em; vertical-align: -22%;" :src="notification.role.iconUrl" alt=""/> - <i v-else class="ph-seal-check ph-bold ph-lg"></i> + <i v-else class="ti ti-badges"></i> </template> <i v-else-if="notification.type === 'edited'" class="ph-pencil ph-bold ph-lg"></i> <!-- notification.reaction が null になることはまずないが、ここでoptional chaining使うと一部ブラウザで刺さるので念の為 --> |