mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-02 10:09:51 -04:00
FIX: hitting edit while replying does nothing
This commit is contained in:
parent
54281d5944
commit
6391dc7f28
1 changed files with 2 additions and 1 deletions
|
@ -316,7 +316,8 @@ export default DiscourseController.extend({
|
|||
|
||||
// If we're already open, we don't have to do anything
|
||||
if (composerModel.get('composeState') === Discourse.Composer.OPEN &&
|
||||
composerModel.get('draftKey') === opts.draftKey) {
|
||||
composerModel.get('draftKey') === opts.draftKey &&
|
||||
composerModel.action === opts.action) {
|
||||
return resolve();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue