diff --git a/app/assets/javascripts/discourse/app/components/choose-topic.js b/app/assets/javascripts/discourse/app/components/choose-topic.js index ab0bc966bfc..5957bdb7d5b 100644 --- a/app/assets/javascripts/discourse/app/components/choose-topic.js +++ b/app/assets/javascripts/discourse/app/components/choose-topic.js @@ -95,6 +95,9 @@ export default Component.extend({ .mapBy("topic") .filter((t) => t.id !== currentTopicId) ); + if (this.topics.length === 1) { + this.send("chooseTopic", this.topics[0]); + } } else { this.setProperties({ topics: null, loading: false }); }