mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 12:27:16 +08:00
FIX: sets categoryId but do not scope when replying as new topic (#7002)
This commit is contained in:
@ -242,6 +242,7 @@ export default DropdownSelectBoxComponent.extend({
|
||||
replyAsNewTopicSelected(options) {
|
||||
options.action = CREATE_TOPIC;
|
||||
options.categoryId = this.get("composerModel.topic.category.id");
|
||||
options.disableScopedCategory = true;
|
||||
this._replyFromExisting(options, _postSnapshot, _topicSnapshot);
|
||||
},
|
||||
|
||||
@ -295,7 +296,12 @@ export default DropdownSelectBoxComponent.extend({
|
||||
if (this[action]) {
|
||||
let model = this.get("composerModel");
|
||||
this[action](
|
||||
model.getProperties("draftKey", "draftSequence", "reply"),
|
||||
model.getProperties(
|
||||
"draftKey",
|
||||
"draftSequence",
|
||||
"reply",
|
||||
"disableScopedCategory"
|
||||
),
|
||||
model
|
||||
);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user