Allow deleting terminated peers

This commit is contained in:
Michael Klein 2022-10-11 15:11:21 +02:00
parent 1f4c4d5005
commit e0a5ea5d09
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export default class PeerAbility extends BaseAbility {
return this.canDelete;
}
get canDelete() {
return !['DELETING', 'TERMINATED'].includes(this.item.State) && super.canDelete;
return !['DELETING'].includes(this.item.State) && super.canDelete;
}
get canUse() {