diff --git a/app/assets/javascripts/discourse/models/composer.js.es6 b/app/assets/javascripts/discourse/models/composer.js.es6 index 366a55e73e9..f566ef943a6 100644 --- a/app/assets/javascripts/discourse/models/composer.js.es6 +++ b/app/assets/javascripts/discourse/models/composer.js.es6 @@ -201,7 +201,7 @@ const Composer = RestModel.extend({ return this.get('canCategorize') && !this.siteSettings.allow_uncategorized_topics && !this.get('categoryId') && - !this.user.get('staff'); + !this.user.get('admin'); } }.property('loading', 'canEditTitle', 'titleLength', 'targetUsernames', 'replyLength', 'categoryId', 'missingReplyCharacters'),