Skip to content

Commit

Permalink
Update changeset version. Fixes #186 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb authored Aug 25, 2020
1 parent 5712d8a commit 43d45ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/plugins/changeset.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function compare(path, old, new_) {
});

var delKeys = _.difference(oldKeys, newKeys);
delKeys.forEach(function (k) {
delKeys.reverse().forEach(function (k) {
changes.push({ type: 'del', key: path.concat(k) });
});

Expand Down Expand Up @@ -120,7 +120,6 @@ function apply(changes, target, modify) {
});
return obj;
}

},{"udc":3,"underscore":4}],3:[function(require,module,exports){
(function (root, factory) {
"use strict";
Expand Down

0 comments on commit 43d45ad

Please sign in to comment.