Merge branch 'virtual-scrolling-2.0' into shigusegubu-themes3

This commit is contained in:
Henry Jameson 2026-09-10 19:14:09 +03:00
commit 980ce4084e

View file

@ -15,7 +15,7 @@ export function useTreeConversationTopology(conversation, replies, current) {
// since our depth starts with 0 and "showing" means "showing children"
// there is a -2 here
const maxDepth = mergedConfig.value.maxDepthInThread - 2
return Math.min(1, maxDepth)
return Math.max(1, maxDepth)
})
const ancestors = computed(() => {