From 19a1d35f6672dab8bf9fc0c53b3b2ea6cc4d7426 Mon Sep 17 00:00:00 2001 From: Tarek Khalil <45508821+khalilovcmded@users.noreply.github.com> Date: Fri, 5 Apr 2019 15:28:41 +0100 Subject: [PATCH] fix linting (#7329) --- app/assets/javascripts/discourse/widgets/post-cooked.js.es6 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 b/app/assets/javascripts/discourse/widgets/post-cooked.js.es6 index 44f2944961..f28f1f6e0d 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) {