fix(client): グループ招待通知アイコンが正しく表示されない問題

This commit is contained in:
NoriDev 2023-06-20 18:41:19 +09:00
parent f95e11ce57
commit 22e0f71dd2
2 changed files with 12 additions and 2 deletions

View file

@ -12,7 +12,7 @@
-
### Server
-
-
---
@ -22,6 +22,15 @@
이 문서는 CherryPick의 변경 사항만 포함합니다.
## 13.x.x-cp-4.x.x
출시일: unreleased<br>
전체 변경 사항을 확인하려면, [CHANGELOG.md#13xx](CHANGELOG.md#13xx) 문서를 참고하십시오.
### Client
- Fix: 그룹 초대 알림 아이콘이 잘못 표시되는 문제
---
## 13.13.2-cp-4.1.0
출시일: 2023/06/20<br>
전체 변경 사항을 확인하려면, [CHANGELOG.md#13132](CHANGELOG.md#13132) 문서를 참고하십시오.

View file

@ -10,6 +10,7 @@
[$style.t_follow]: notification.type === 'follow',
[$style.t_followRequestAccepted]: notification.type === 'followRequestAccepted',
[$style.t_receiveFollowRequest]: notification.type === 'receiveFollowRequest',
[$style.t_groupInvited]: notification.type === 'groupInvited',
[$style.t_renote]: notification.type === 'renote',
[$style.t_reply]: notification.type === 'reply',
[$style.t_mention]: notification.type === 'mention',
@ -21,7 +22,7 @@
<i v-if="notification.type === 'follow'" class="ti ti-plus"></i>
<i v-else-if="notification.type === 'receiveFollowRequest'" class="ti ti-clock"></i>
<i v-else-if="notification.type === 'followRequestAccepted'" class="ti ti-check"></i>
<i v-else-if="notification.type === 'groupInvited'" class="ti ti-certificate-2"></i>
<i v-else-if="notification.type === 'groupInvited'" class="ti ti-users-group"></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="ti ti-at"></i>