forked from AkkomaGang/akkoma-fe
fix typeError in delete_button.js
not a big thing just fixes a typeError.
This commit is contained in:
parent
90e3ab45d4
commit
0a62341135
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ const DeleteButton = {
|
|||
},
|
||||
computed: {
|
||||
currentUser () { return this.$store.state.users.currentUser },
|
||||
canDelete () { return this.currentUser.rights.delete_others_notice || this.status.user.id === this.currentUser.id }
|
||||
canDelete () { return this.currentUser && this.currentUser.rights.delete_others_notice || this.status.user.id === this.currentUser.id }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue