Commit 94399b59 authored by Bryce Johnson's avatar Bryce Johnson

Use underscore's assign instead of Object.assign bc phantom.

parent 2958377d
......@@ -29,7 +29,7 @@
assignToData(key, val) {
// TODO: Remove when passed in json
const base = { suggested_approvers: JSON.parse(this.dataset.suggestedApprovers) };
this.data[key] = _.extend(base, val);
this.data[key] = _.assign(base, val);
return this.data[key];
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment