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) {
|
} else if (attrs.canRecover) {
|
||||||
return { id: 'recover', action: 'recoverPost', title: 'post.controls.undelete', icon: 'undo', className: 'recover' };
|
return { id: 'recover', action: 'recoverPost', title: 'post.controls.undelete', icon: 'undo', className: 'recover' };
|
||||||
} else if (attrs.canDelete) {
|
} 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