fix(client/friendly): タイムラインが変更されたときにナビゲーションバーのインジケーターが消えない問題

This commit is contained in:
NoriDev 2023-06-07 17:23:26 +09:00
parent 6d66219d7e
commit f0d72345a7
2 changed files with 5 additions and 1 deletions

View file

@ -33,6 +33,7 @@
- 토스트 알림의 배경이 불투명하게 표시되도록
- 헤더의 배경이 불투명하게 표시되도록
- Fix: (Friendly) 플로팅 메뉴를 길게 눌렀을 때 프로필 이미지를 드래그 할 수 있는 문제
- Fix: (Friendly) 타임라인이 변경되었을 때 네비게이션 바의 인디케이터가 사라지지 않는 문제
- Fix: 네트워크 트래픽이 10MB/s를 초과하면 네트워크 통계 위젯의 그래프가 잘못 출력되는 문제
---

View file

@ -83,7 +83,10 @@ let queue = $ref(0);
let srcWhenNotSignin = $ref(isLocalTimelineAvailable ? 'local' : 'global');
const src = $computed({ get: () => ($i ? defaultStore.reactiveState.tl.value.src : srcWhenNotSignin), set: (x) => saveSrc(x) });
watch ($$(src), () => queue = 0);
watch ($$(src), () => {
queue = 0;
queueUpdated(queue);
});
onMounted(() => {
eventBus.on('showEl', (showEl_receive) => {