mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-26 06:41:22 -04:00
FIX: Don't show trash can for user deleted posts
This commit is contained in:
parent
57c518eee1
commit
166a056497
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ export default createWidget('actions-summary', {
|
|||
body.push(h('div.clearfix'));
|
||||
});
|
||||
|
||||
if (attrs.isDeleted) {
|
||||
if (attrs.deleted_at) {
|
||||
body.push(h('div.post-action', [
|
||||
iconNode('trash-o'),
|
||||
' ',
|
||||
|
|
Loading…
Add table
Reference in a new issue