diff --git a/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 b/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 index 44f29449612..f28f1f6e0d8 100644 --- a/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 @@ -18,7 +18,9 @@ export default class PostCooked { this._highlighted = false; this.decoratorHelper = decoratorHelper; this.currentUser = decoratorHelper.widget.currentUser; - this.ignoredUsers = this.currentUser ? this.currentUser.ignored_users : null; + this.ignoredUsers = this.currentUser + ? this.currentUser.ignored_users + : null; } update(prev) {