omg i think i actually did it

This commit is contained in:
Henry Jameson 2026-09-16 02:04:23 +03:00
commit 5c316ff175
2 changed files with 15 additions and 4 deletions

View file

@ -102,6 +102,7 @@ export default {
// # Main things
const {
focusedId,
focusedIdRaw,
conversationId,
setFocused,
currentStatus,
@ -320,7 +321,7 @@ export default {
}
const diveIntoStatus = (id) => scrollTo(new Set([id]))
const diveToTopLevel = () => scrollTo(new Set([currentAncestors.value[0].id]))
watch(focusedId, async (neu) => {
watch(focusedIdRaw, async (neu) => {
if (!isPage.value) return
if (neu) scrollTo(new Set([neu]))
})