Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/clusters/services/application_state_machine.js')
-rw-r--r--app/assets/javascripts/clusters/services/application_state_machine.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/javascripts/clusters/services/application_state_machine.js b/app/assets/javascripts/clusters/services/application_state_machine.js
index 1dd815ae44d..2ff604af9a7 100644
--- a/app/assets/javascripts/clusters/services/application_state_machine.js
+++ b/app/assets/javascripts/clusters/services/application_state_machine.js
@@ -15,6 +15,7 @@ const {
UNINSTALL_ERRORED,
PRE_INSTALLED,
UNINSTALLED,
+ EXTERNALLY_INSTALLED,
} = APPLICATION_STATUS;
const applicationStateMachine = {
@@ -71,6 +72,9 @@ const applicationStateMachine = {
[UNINSTALLED]: {
target: UNINSTALLED,
},
+ [EXTERNALLY_INSTALLED]: {
+ target: EXTERNALLY_INSTALLED,
+ },
},
},
[NOT_INSTALLABLE]: {