mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 16:14:16 +08:00
FIX: deletePost
action was incorrect called delete
This commit is contained in:
parent
e212435545
commit
cf4e6e2f5b
|
@ -217,7 +217,7 @@ registerButton('delete', attrs => {
|
|||
} else if (attrs.canRecover) {
|
||||
return { id: 'recover', action: 'recoverPost', title: 'post.controls.undelete', icon: 'undo', className: 'recover' };
|
||||
} else if (attrs.canDelete) {
|
||||
return { action: 'delete', title: 'post.controls.delete', icon: 'trash-o', className: 'delete' };
|
||||
return { id: 'delete', action: 'deletePost', title: 'post.controls.delete', icon: 'trash-o', className: 'delete' };
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user