1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-25 10:54:56 +02:00

fix(frontend): loadRawImages有効時、リモート画像をタップしてからビューワーが開くまでに初回のみラグが発生する問題を修正 (#17703)

ビューワーを表示するトリガーをサムネイル画像又はオリジナル画像がロードされたときに修正
This commit is contained in:
Genki.Takeuchi
2026-07-13 19:58:05 +09:00
committed by GitHub
parent f74b427e67
commit 53c398ce43

View File

@@ -702,7 +702,7 @@ function animateFromSourceToNeutral() {
});
}
watch(thumbnailContentLoaded, () => {
watch([thumbnailContentLoaded, originalContentLoaded], () => {
animateFromSourceToNeutral();
}, { once: true });