FIX: Keep tags when switching to shared draft

This commit is contained in:
Robin Ward
2019-01-22 11:26:52 -05:00
parent f32de88dfc
commit a834245683
2 changed files with 9 additions and 0 deletions

View File

@ -276,6 +276,7 @@ export default DropdownSelectBoxComponent.extend({
options.action = action;
options.categoryId = this.get("composerModel.categoryId");
options.topicTitle = this.get("composerModel.title");
options.tags = this.get("composerModel.tags");
options.skipDraftCheck = true;
this._openComposer(options);
},