summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorJoão Cunha <j.a.cunha@gmail.com>2019-07-01 15:57:24 +0000
committerMayra Cabrera <mcabrera@gitlab.com>2019-07-01 15:57:24 +0000
commit30ede575acd13f0bf76b78c081f52611d356a9bd (patch)
tree984088659b6862c9aacf2ca201cf2dd709fd711d /app/assets
parente1a6b9f9995b588191e0d7c026f2703216a01a4c (diff)
downloadgitlab-ce-30ede575acd13f0bf76b78c081f52611d356a9bd.tar.gz
Allow JupyterHub to be uninstalled
- enabled uninstallation - give it a specific uninstall message - ajust specs
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue b/app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue
index 65827f1cb6a..920439ebb23 100644
--- a/app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue
+++ b/app/assets/javascripts/clusters/components/uninstall_application_confirmation_modal.vue
@@ -14,7 +14,9 @@ const CUSTOM_APP_WARNING_TEXT = {
[PROMETHEUS]: s__('ClusterIntegration|All data will be deleted and cannot be restored.'),
[RUNNER]: s__('ClusterIntegration|Any running pipelines will be canceled.'),
[KNATIVE]: s__('ClusterIntegration|The associated IP will be deleted and cannot be restored.'),
- [JUPYTER]: '',
+ [JUPYTER]: s__(
+ 'ClusterIntegration|All data not committed to GitLab will be deleted and cannot be restored.',
+ ),
};
export default {