Skip to content

Commit 4fa90c7

Browse files
committed
Correctly merge env edits after background upates
1 parent 9b48a7b commit 4fa90c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/scripts/directives/editEnvironmentVariables.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
// variables. If not, merge the environment edits into the updated
5353
// deployment config object.
5454
if (EnvironmentService.isEnvironmentEqual(currentValue, previousValue)) {
55-
ctrl.updatedObject = EnvironmentService.mergeEdits(currentValue, previousValue);
55+
ctrl.updatedObject = EnvironmentService.mergeEdits(ctrl.updatedObject, currentValue);
5656
return;
5757
}
5858

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14467,7 +14467,7 @@ bottom: n.offsetBottom
1446714467
angular.module("openshiftConsole").component("editEnvironmentVariables", {
1446814468
controller: [ "$filter", "APIService", "DataService", "EnvironmentService", "NotificationsService", function(e, t, n, a, r) {
1446914469
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) {
14470-
u || (l.form && !l.form.$pristine && l.updatedObject ? a.isEnvironmentEqual(e, t) ? l.updatedObject = a.mergeEdits(e, t) : (u = !0, r.addNotification({
14470+
u || (l.form && !l.form.$pristine && l.updatedObject ? a.isEnvironmentEqual(e, t) ? l.updatedObject = a.mergeEdits(l.updatedObject, e) : (u = !0, r.addNotification({
1447114471
type: "warning",
1447214472
message: "The environment variables for the " + o + " have been updated in the background.",
1447314473
details: "Saving your changes may create a conflict or cause loss of data."

0 commit comments

Comments
 (0)