Skip to content

Commit dcc208f

Browse files
Merge pull request #3788 from Countly/SER-440
[SER-440] default-properties-are-not-being-applied-on-dual-axis-charts
2 parents 93bf566 + 7f54772 commit dcc208f

File tree

1 file changed

+1
-1
lines changed
  • frontend/express/public/javascripts/countly/vue/components

1 file changed

+1
-1
lines changed

frontend/express/public/javascripts/countly/vue/components/vis.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@
343343
function mergeWithCustomizer(objValue, srcValue) {
344344
if (Array.isArray(srcValue) && typeof objValue === 'object') {
345345
srcValue.forEach(function(value, index) {
346-
srcValue[index] = _mergeWith(objValue, value);
346+
srcValue[index] = _mergeWith({}, objValue, value);
347347
});
348348
return srcValue;
349349
}

0 commit comments

Comments
 (0)