mirror of https://github.com/status-im/consul.git
Allow deleting terminated peers
This commit is contained in:
parent
0afe8c14ee
commit
63e40df307
|
@ -11,7 +11,7 @@ export default class PeerAbility extends BaseAbility {
|
||||||
return this.canDelete;
|
return this.canDelete;
|
||||||
}
|
}
|
||||||
get canDelete() {
|
get canDelete() {
|
||||||
return !['DELETING', 'TERMINATED'].includes(this.item.State) && super.canDelete;
|
return !['DELETING'].includes(this.item.State) && super.canDelete;
|
||||||
}
|
}
|
||||||
|
|
||||||
get canUse() {
|
get canUse() {
|
||||||
|
|
Loading…
Reference in New Issue