mirror of https://github.com/portainer/portainer
added missing question mark to k8s confirmation modal
parent
f540375eb7
commit
f631c1757b
|
@ -155,7 +155,7 @@ class KubernetesCreateApplicationController {
|
||||||
try {
|
try {
|
||||||
const confirmed = await this.ModalService.confirmAsync({
|
const confirmed = await this.ModalService.confirmAsync({
|
||||||
title: 'Are you sure?',
|
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: {
|
buttons: {
|
||||||
confirm: {
|
confirm: {
|
||||||
label: 'Update',
|
label: 'Update',
|
||||||
|
|
|
@ -64,7 +64,7 @@ class KubernetesRedeployAppGitFormController {
|
||||||
|
|
||||||
const confirmed = await this.ModalService.confirmAsync({
|
const confirmed = await this.ModalService.confirmAsync({
|
||||||
title: 'Are you sure?',
|
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: {
|
buttons: {
|
||||||
confirm: {
|
confirm: {
|
||||||
label: 'Update',
|
label: 'Update',
|
||||||
|
|
Loading…
Reference in New Issue