1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 09:26:34 +02:00

Fix ellipses button on comment post

The subtree retainer should take revealContent into account, so that when revealContent is toggled, it redraws the post
This commit is contained in:
Alexander Skvortsov
2020-08-27 00:14:35 -04:00
committed by Franz Liedke
parent 038744f092
commit 6ed3cb56d4

View File

@@ -40,7 +40,8 @@ export default class CommentPost extends Post {
this.subtree.check(
() => this.cardVisible,
() => this.isEditing()
() => this.isEditing(),
() => this.revealContent
);
}