FIX: ensure we're always changing 1 post ownership

This commit is contained in:
Régis Hanol 2017-12-13 22:45:14 +01:00
parent f7f15a8538
commit c63ecd87f2
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ export default Ember.Controller.extend(BufferedContent, {
}, },
changePostOwner(post) { changePostOwner(post) {
this.get("selectedPostIds").addObject(post.id); this.set("selectedPostIds", [post.id]);
this.send('changeOwner'); this.send('changeOwner');
}, },