1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #3951: Add DELETING state (#683)

This commit is contained in:
Sergio Betanzos 2021-01-21 09:53:21 +01:00 committed by GitHub
parent b051548348
commit 95ef14f5e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -25,6 +25,11 @@ export const PROVISIONS_STATES = [
name: STATES.ERROR,
color: '#8c352a',
meaning: ''
},
{
name: STATES.DELETING,
color: '#8c352a',
meaning: ''
}
]

View File

@ -23,3 +23,4 @@ export const DISABLED = 'DISABLED'
export const CONFIGURING = 'CONFIGURING'
export const ERROR = 'ERROR'
export const DELETING = 'DELETING'