mirror of https://github.com/portainer/portainer
fix(app): update redeploy wording [EE-4889] (#8317)
Co-authored-by: testa113 <testa113>pull/8353/head
parent
0cd272211a
commit
e6d0e297dd
|
@ -251,7 +251,7 @@
|
||||||
ng-click="ctrl.redeployApplication()"
|
ng-click="ctrl.redeployApplication()"
|
||||||
data-cy="k8sAppDetail-redeployButton"
|
data-cy="k8sAppDetail-redeployButton"
|
||||||
>
|
>
|
||||||
<pr-icon icon="'rotate-cw'" class="'mr-1'"></pr-icon>Terminate and restart
|
<pr-icon icon="'rotate-cw'" class="'mr-1'"></pr-icon>Redeploy
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
ng-if="!ctrl.isExternalApplication()"
|
ng-if="!ctrl.isExternalApplication()"
|
||||||
|
|
|
@ -236,8 +236,8 @@ class KubernetesApplicationController {
|
||||||
async redeployApplicationAsync() {
|
async redeployApplicationAsync() {
|
||||||
const confirmed = await this.ModalService.confirmAsync({
|
const confirmed = await this.ModalService.confirmAsync({
|
||||||
title: 'Are you sure?',
|
title: 'Are you sure?',
|
||||||
message: 'Terminating and restarting the application will cause service interruption. Do you wish to continue?',
|
message: 'Redeploying the application may cause a service interruption. Do you wish to continue?',
|
||||||
buttons: { confirm: { label: 'Terminate and restart', className: 'btn-primary' } },
|
buttons: { confirm: { label: 'Redeploy', className: 'btn-primary' } },
|
||||||
});
|
});
|
||||||
if (!confirmed) {
|
if (!confirmed) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue