Reset thread open state when collapsed
This commit is contained in:
parent
e01445b1d9
commit
89761743b8
1 changed files with 5 additions and 2 deletions
|
@ -334,8 +334,7 @@ const conversation = {
|
||||||
if (value) {
|
if (value) {
|
||||||
this.fetchConversation()
|
this.fetchConversation()
|
||||||
} else {
|
} else {
|
||||||
// if we collapse it, we should reset the dive
|
this.resetDisplayState()
|
||||||
this.undive()
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
virtualHidden (value) {
|
virtualHidden (value) {
|
||||||
|
@ -492,6 +491,10 @@ const conversation = {
|
||||||
parent = this.parentOf(parent)
|
parent = this.parentOf(parent)
|
||||||
}
|
}
|
||||||
return cur
|
return cur
|
||||||
|
},
|
||||||
|
resetDisplayState () {
|
||||||
|
this.undive()
|
||||||
|
this.threadDisplayStatusObject = {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue