diff --git a/app/assets/javascripts/discourse/app/controllers/composer.js b/app/assets/javascripts/discourse/app/controllers/composer.js index 9fa2593d631..5d1459db6b2 100644 --- a/app/assets/javascripts/discourse/app/controllers/composer.js +++ b/app/assets/javascripts/discourse/app/controllers/composer.js @@ -710,7 +710,10 @@ export default Controller.extend({ composer.set("disableDrafts", true); // for now handle a very narrow use case - // if we are replying to a topic AND not on the topic pop the window up + // if we are replying to a topic + // AND are on on a different topic + // AND topic is open (or we are staff) + // --> pop the window up if (!force && composer.replyingToTopic) { const currentTopic = this.topicModel; @@ -719,7 +722,10 @@ export default Controller.extend({ return; } - if (currentTopic.id !== composer.get("topic.id")) { + if ( + currentTopic.id !== composer.get("topic.id") && + (this.isStaffUser || !currentTopic.closed) + ) { const message = "