diff --git a/src/fireedge/src/client/constants/provision.js b/src/fireedge/src/client/constants/provision.js index 9efb723b5b..1db88a1516 100644 --- a/src/fireedge/src/client/constants/provision.js +++ b/src/fireedge/src/client/constants/provision.js @@ -25,6 +25,11 @@ export const PROVISIONS_STATES = [ name: STATES.ERROR, color: '#8c352a', meaning: '' + }, + { + name: STATES.DELETING, + color: '#8c352a', + meaning: '' } ] diff --git a/src/fireedge/src/client/constants/states.js b/src/fireedge/src/client/constants/states.js index da569ee0fd..6cdfc861b2 100644 --- a/src/fireedge/src/client/constants/states.js +++ b/src/fireedge/src/client/constants/states.js @@ -23,3 +23,4 @@ export const DISABLED = 'DISABLED' export const CONFIGURING = 'CONFIGURING' export const ERROR = 'ERROR' +export const DELETING = 'DELETING'