mirror of https://github.com/portainer/portainer
Disable update application button on load of edit screen (#10957)
parent
fcc5736d61
commit
bbf1900677
|
@ -414,7 +414,7 @@
|
||||||
style="margin-top: 7px; margin-left: 0"
|
style="margin-top: 7px; margin-left: 0"
|
||||||
button-spinner="ctrl.state.updateWebEditorInProgress"
|
button-spinner="ctrl.state.updateWebEditorInProgress"
|
||||||
>
|
>
|
||||||
<span ng-show="!ctrl.state.updateWebEditorInProgress">Update the application</span>
|
<span ng-show="!ctrl.state.updateWebEditorInProgress">Update application</span>
|
||||||
<span ng-show="ctrl.state.updateWebEditorInProgress">Update in progress...</span>
|
<span ng-show="ctrl.state.updateWebEditorInProgress">Update in progress...</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -216,10 +216,12 @@ class KubernetesCreateApplicationController {
|
||||||
}
|
}
|
||||||
|
|
||||||
onChangeFileContent(value) {
|
onChangeFileContent(value) {
|
||||||
|
this.$scope.$evalAsync(() => {
|
||||||
if (this.stackFileContent.replace(/(\r\n|\n|\r)/gm, '') !== value.replace(/(\r\n|\n|\r)/gm, '')) {
|
if (this.stackFileContent.replace(/(\r\n|\n|\r)/gm, '') !== value.replace(/(\r\n|\n|\r)/gm, '')) {
|
||||||
this.state.isEditorDirty = true;
|
this.state.isEditorDirty = true;
|
||||||
this.stackFileContent = value;
|
this.stackFileContent = value;
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
onDataAccessPolicyChange(value) {
|
onDataAccessPolicyChange(value) {
|
||||||
|
@ -1055,9 +1057,6 @@ class KubernetesCreateApplicationController {
|
||||||
|
|
||||||
this.formValues.OriginalIngresses = this.ingresses;
|
this.formValues.OriginalIngresses = this.ingresses;
|
||||||
this.formValues.ImageModel = await this.parseImageConfiguration(this.formValues.ImageModel);
|
this.formValues.ImageModel = await this.parseImageConfiguration(this.formValues.ImageModel);
|
||||||
this.savedFormValues = angular.copy(this.formValues);
|
|
||||||
this.updateNamespaceLimits(this.namespaceWithQuota);
|
|
||||||
this.updateSliders(this.namespaceWithQuota);
|
|
||||||
|
|
||||||
if (this.application.ApplicationType !== KubernetesApplicationTypes.StatefulSet) {
|
if (this.application.ApplicationType !== KubernetesApplicationTypes.StatefulSet) {
|
||||||
_.forEach(this.formValues.PersistedFolders, (persistedFolder) => {
|
_.forEach(this.formValues.PersistedFolders, (persistedFolder) => {
|
||||||
|
@ -1070,6 +1069,10 @@ class KubernetesCreateApplicationController {
|
||||||
}
|
}
|
||||||
this.formValues.OriginalPersistedFolders = this.formValues.PersistedFolders;
|
this.formValues.OriginalPersistedFolders = this.formValues.PersistedFolders;
|
||||||
await this.refreshNamespaceData(namespace);
|
await this.refreshNamespaceData(namespace);
|
||||||
|
|
||||||
|
this.savedFormValues = angular.copy(this.formValues);
|
||||||
|
this.updateNamespaceLimits(this.namespaceWithQuota);
|
||||||
|
this.updateSliders(this.namespaceWithQuota);
|
||||||
} else {
|
} else {
|
||||||
this.formValues.AutoScaler = KubernetesApplicationHelper.generateAutoScalerFormValueFromHorizontalPodAutoScaler(null, this.formValues.ReplicaCount);
|
this.formValues.AutoScaler = KubernetesApplicationHelper.generateAutoScalerFormValueFromHorizontalPodAutoScaler(null, this.formValues.ReplicaCount);
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,7 +316,9 @@ export function usePatchApplicationMutation(
|
||||||
}: {
|
}: {
|
||||||
appKind: AppKind;
|
appKind: AppKind;
|
||||||
patch: ApplicationPatch;
|
patch: ApplicationPatch;
|
||||||
contentType?: string;
|
contentType?:
|
||||||
|
| 'application/json-patch+json'
|
||||||
|
| 'application/strategic-merge-patch+json';
|
||||||
}) =>
|
}) =>
|
||||||
patchApplication(
|
patchApplication(
|
||||||
environmentId,
|
environmentId,
|
||||||
|
|
Loading…
Reference in New Issue