fix(stacks): check for editor change before setting as dirty

pull/5079/head
Chaim Lev-Ari 4 years ago
parent 43702c2516
commit 87e7d8ada8

@ -203,10 +203,9 @@ angular.module('portainer.app').controller('StackController', [
$scope.editorUpdate = function (cm) {
if ($scope.stackFileContent !== cm.getValue()) {
$scope.state.isEditorDirty = true;
$scope.stackFileContent = cm.getValue();
$scope.state.yamlError = StackHelper.validateYAML($scope.stackFileContent, $scope.containerNames);
}
$scope.stackFileContent = cm.getValue();
$scope.state.yamlError = StackHelper.validateYAML($scope.stackFileContent, $scope.containerNames);
$scope.state.isEditorDirty = true;
};
$scope.stopStack = stopStack;

Loading…
Cancel
Save