From 95ef14f5e19ec51c1b07cb8fd97b02dc95b51805 Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Thu, 21 Jan 2021 09:53:21 +0100 Subject: [PATCH] F #3951: Add DELETING state (#683) --- src/fireedge/src/client/constants/provision.js | 5 +++++ src/fireedge/src/client/constants/states.js | 1 + 2 files changed, 6 insertions(+) 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'