Skip to content

Commit

Permalink
Merge pull request #421
Browse files Browse the repository at this point in the history
Lint: oswithdialogをMkNotification.vueで使わないように。
  • Loading branch information
noridev authored Mar 20, 2024
2 parents 07c0fe0 + 69e8383 commit a949fab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#202420](CHANGE
- Fix: 노트 자세히 보기에서 노트 작성 폼을 클릭하면 내용이 초기화될 수 있음 (kokonect-link/cherrypick#410)
- Fix: '설정 - 타임라인' 페이지가 표시되지 않음
- Fix: '노트 - 리액션 목록' 기능이 작동하지 않음
- Fix: oswithdialogをMkNotification.vueで使わないように。

---

Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/components/MkNotification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ const rejectFollowRequest = () => {
const acceptGroupInvitation = () => {
groupInviteDone.value = true;
os.apiWithDialog('users/groups/invitations/accept', { invitationId: props.notification.invitation.id });
misskeyApi('users/groups/invitations/accept', { invitationId: props.notification.invitation.id });
};
const rejectGroupInvitation = () => {
groupInviteDone.value = true;
os.apiWithDialog('users/groups/invitations/reject', { invitationId: props.notification.invitation.id });
misskeyApi('users/groups/invitations/reject', { invitationId: props.notification.invitation.id });
};
</script>

Expand Down

0 comments on commit a949fab

Please sign in to comment.