change isForceRemoveable returnMessage requirement

This commit is contained in:
Jordon Leach 2021-11-29 13:57:40 -05:00
parent ada992ce8d
commit a930bb5841
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ export default class CapiMachine extends SteveModel {
const conditions = get(this, 'status.conditions');
const reasonMessage = (findBy(conditions, 'type', 'InfrastructureReady') || {}).reason;
if (reasonMessage === 'DeletionFailed') {
if (reasonMessage === 'DeleteError') {
return true;
}