FIX: resolve from URL when using /new-topic route

This commit is contained in:
Arpit Jalan 2017-12-04 17:34:17 +05:30
parent 5a9622163d
commit f466791a15

View File

@ -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')