Fix DiscussionRenamedPost not being redrawn when toggling

Closes #428.
This commit is contained in:
Franz Liedke 2016-03-31 09:35:19 +09:00
parent d6c6e78193
commit 328a244f92
2 changed files with 14 additions and 2 deletions

View File

@ -21274,9 +21274,16 @@ System.register('flarum/components/DiscussionRenamedPost', ['flarum/components/B
babelHelpers.createClass(DiscussionRenamedPost, [{
key: 'init',
value: function init() {
var _this2 = this;
babelHelpers.get(Object.getPrototypeOf(DiscussionRenamedPost.prototype), 'init', this).call(this);
this.expanded = true;
this.expanded = false;
// Rerender the post content when we toggle the details.
this.subtree.check(function () {
return _this2.expanded;
});
}
}, {
key: 'icon',

View File

@ -13,7 +13,12 @@ export default class DiscussionRenamedPost extends EventPost {
init() {
super.init();
this.expanded = true;
this.expanded = false;
// Rerender the post content when we toggle the details.
this.subtree.check(
() => this.expanded
);
}
icon() {