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-app-git-form/kubernetes-app-git-form.controller.js b/app/portainer/components/forms/kubernetes-app-git-form/kubernetes-app-git-form.controller.js index b2ec4c90a..68ab3d1bc 100644 --- a/app/portainer/components/forms/kubernetes-app-git-form/kubernetes-app-git-form.controller.js +++ b/app/portainer/components/forms/kubernetes-app-git-form/kubernetes-app-git-form.controller.js @@ -41,7 +41,7 @@ class KubernetesAppGitFormController { try { 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', @@ -83,6 +83,7 @@ class KubernetesAppGitFormController { } $onInit() { + console.log(this); this.formValues.RefName = this.stack.GitConfig.ReferenceName; if (this.stack.GitConfig && this.stack.GitConfig.Authentication) { this.formValues.RepositoryUsername = this.stack.GitConfig.Authentication.Username;