Reset thread open state when collapsed

This commit is contained in:
Tusooa Zhu 2021-08-11 00:22:47 -04:00
parent 10cd03c718
commit 26670e9003
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 5 additions and 2 deletions

View File

@ -334,8 +334,7 @@ const conversation = {
if (value) {
this.fetchConversation()
} else {
// if we collapse it, we should reset the dive
this.undive()
this.resetDisplayState()
}
},
virtualHidden (value) {
@ -492,6 +491,10 @@ const conversation = {
parent = this.parentOf(parent)
}
return cur
},
resetDisplayState () {
this.undive()
this.threadDisplayStatusObject = {}
}
}
}