From f631c1757b80a6067ba8d3d6e86c792bf285db31 Mon Sep 17 00:00:00 2001 From: Felix Han Date: Fri, 3 Sep 2021 13:29:27 +1200 Subject: [PATCH] added missing question mark to k8s confirmation modal --- .../views/applications/create/createApplicationController.js | 2 +- .../kubernetes-redeploy-app-git-form.controller.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/kubernetes/views/applications/create/createApplicationController.js b/app/kubernetes/views/applications/create/createApplicationController.js index f713c12aa..064486f04 100644 --- a/app/kubernetes/views/applications/create/createApplicationController.js +++ b/app/kubernetes/views/applications/create/createApplicationController.js @@ -155,7 +155,7 @@ class KubernetesCreateApplicationController { try { const confirmed = await this.ModalService.confirmAsync({ title: 'Are you sure?', - message: 'Any changes to this application will be overriden and may cause a service interruption. Do you wish to continue', + message: 'Any changes to this application will be overriden and may cause a service interruption. Do you wish to continue?', buttons: { confirm: { label: 'Update', diff --git a/app/portainer/components/forms/kubernetes-redeploy-app-git-form/kubernetes-redeploy-app-git-form.controller.js b/app/portainer/components/forms/kubernetes-redeploy-app-git-form/kubernetes-redeploy-app-git-form.controller.js index 08774e8a9..6b7083f66 100644 --- a/app/portainer/components/forms/kubernetes-redeploy-app-git-form/kubernetes-redeploy-app-git-form.controller.js +++ b/app/portainer/components/forms/kubernetes-redeploy-app-git-form/kubernetes-redeploy-app-git-form.controller.js @@ -64,7 +64,7 @@ class KubernetesRedeployAppGitFormController { const confirmed = await this.ModalService.confirmAsync({ title: 'Are you sure?', - message: 'Any changes to this application will be overriden by the definition in git and may cause a service interruption. Do you wish to continue', + message: 'Any changes to this application will be overriden by the definition in git and may cause a service interruption. Do you wish to continue?', buttons: { confirm: { label: 'Update',