Merge branch 'virtual-scrolling-2.0' into shigusegubu-themes3
This commit is contained in:
commit
87ff0d5224
1 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ export function useConversation(statusId, expanded) {
|
|||
return idA < idB ? -1 : 1
|
||||
}
|
||||
}
|
||||
const fullConversation = ref(new Set([currentStatus.value?.id].filter(Boolean)))
|
||||
const fullConversation = ref(new Set([mainStatus.value?.id].filter(Boolean)))
|
||||
const fullyLoaded = ref(false)
|
||||
const conversationId = computed(
|
||||
() => mainStatus.value?.statusnet_conversation_id,
|
||||
|
|
@ -113,7 +113,7 @@ export function useConversation(statusId, expanded) {
|
|||
|
||||
fullConversation.value = new Set([
|
||||
...ancestors,
|
||||
currentStatus.value,
|
||||
mainStatus.value,
|
||||
...descendants
|
||||
].map(({ id }) => id))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue