mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-02 10:09:51 -04:00
FIX: PM title not editable
This commit is contained in:
parent
0cbfb43adb
commit
508efe3029
1 changed files with 7 additions and 1 deletions
|
@ -207,9 +207,15 @@ Discourse.Topic = Discourse.Model.extend({
|
|||
// Don't save unless we can
|
||||
if (!this.get('details.can_edit')) return;
|
||||
|
||||
var data = { title: this.get('title') };
|
||||
|
||||
if(this.get('category')){
|
||||
data.category_id = this.get('category.id');
|
||||
}
|
||||
|
||||
return Discourse.ajax(this.get('url'), {
|
||||
type: 'PUT',
|
||||
data: { title: this.get('title'), category_id: this.get('category.id') }
|
||||
data: data
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue