diff --git a/app/assets/javascripts/discourse/components/composer-title.js.es6 b/app/assets/javascripts/discourse/components/composer-title.js.es6 index 8841500af8f..f6816fb302f 100644 --- a/app/assets/javascripts/discourse/components/composer-title.js.es6 +++ b/app/assets/javascripts/discourse/components/composer-title.js.es6 @@ -17,6 +17,10 @@ export default Ember.Component.extend({ $input.putCursorAtEnd(); }); } + + if (this.get('composer.titleLength') > 0) { + Ember.run.debounce(this, this._titleChanged, 10); + } }, @computed('composer.titleLength', 'composer.missingTitleCharacters', 'composer.minimumTitleLength', 'lastValidatedAt')