feat: 활동에서 팔로잉, 팔로워 차트를 볼 수 있음

This commit is contained in:
NoriDev 2023-10-13 17:24:17 +09:00
parent 1bfbde58c8
commit db1c2a3c8d
2 changed files with 5 additions and 4 deletions

View file

@ -47,6 +47,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- Feat: 클라이언트 업데이트 알림 개선 - Feat: 클라이언트 업데이트 알림 개선
- 알림 채널을 선택할 수 있음 - 알림 채널을 선택할 수 있음
- 다음 릴리즈 출시까지 알리지 않도록 설정할 수 있음 - 다음 릴리즈 출시까지 알리지 않도록 설정할 수 있음
- Feat: 활동에서 팔로잉, 팔로워 차트를 볼 수 있음
- Enhance: 그룹 대화에서 읽음 표시를 개선 - Enhance: 그룹 대화에서 읽음 표시를 개선
- Enhance: cli, bios 페이지 개선 - Enhance: cli, bios 페이지 개선
- Enhance: 서버와 연결이 끊겼을 때 stream indicator가 즉시 표시되지 않도록 (MisskeyIO/misskey#172) - Enhance: 서버와 연결이 끊겼을 때 stream indicator가 즉시 표시되지 않도록 (MisskeyIO/misskey#172)

View file

@ -49,16 +49,16 @@ function showMenu(ev: MouseEvent) {
action: () => { action: () => {
chartSrc = 'per-user-pv'; chartSrc = 'per-user-pv';
}, },
}, /*, { }, {
text: i18n.ts.following, text: i18n.ts.following,
action: () => { action: () => {
chartSrc = 'per-user-following'; chartSrc = 'per-user-following';
} },
}, { }, {
text: i18n.ts.followers, text: i18n.ts.followers,
action: () => { action: () => {
chartSrc = 'per-user-followers'; chartSrc = 'per-user-followers';
} },
}*/], ev.currentTarget ?? ev.target); }], ev.currentTarget ?? ev.target);
} }
</script> </script>