diff --git a/app/scripts/directives/editEnvironmentVariables.js b/app/scripts/directives/editEnvironmentVariables.js index 778f958eca..97f649a2d7 100644 --- a/app/scripts/directives/editEnvironmentVariables.js +++ b/app/scripts/directives/editEnvironmentVariables.js @@ -52,7 +52,7 @@ // variables. If not, merge the environment edits into the updated // deployment config object. if (EnvironmentService.isEnvironmentEqual(currentValue, previousValue)) { - ctrl.updatedObject = EnvironmentService.mergeEdits(currentValue, previousValue); + ctrl.updatedObject = EnvironmentService.mergeEdits(ctrl.updatedObject, currentValue); return; } diff --git a/dist/scripts/scripts.js b/dist/scripts/scripts.js index 814685c850..3a0dc4b690 100644 --- a/dist/scripts/scripts.js +++ b/dist/scripts/scripts.js @@ -14477,7 +14477,7 @@ bottom: n.offsetBottom angular.module("openshiftConsole").component("editEnvironmentVariables", { controller: [ "$filter", "APIService", "DataService", "EnvironmentService", "NotificationsService", function(e, t, n, a, r) { var o, i, s, c, l = this, u = !1, d = [], m = [], p = !1, f = e("canI"), g = e("getErrorDetails"), v = e("humanizeKind"), h = e("orderByDisplayName"), y = function(e, t) { -u || (l.form && !l.form.$pristine && l.updatedObject ? a.isEnvironmentEqual(e, t) ? l.updatedObject = a.mergeEdits(e, t) : (u = !0, r.addNotification({ +u || (l.form && !l.form.$pristine && l.updatedObject ? a.isEnvironmentEqual(e, t) ? l.updatedObject = a.mergeEdits(l.updatedObject, e) : (u = !0, r.addNotification({ type: "warning", message: "The environment variables for the " + o + " have been updated in the background.", details: "Saving your changes may create a conflict or cause loss of data."