Skip to content

Commit

Permalink
Merge branch 'release/2.0.0-rc.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
BigFatDog committed Mar 26, 2018
2 parents cf71b0a + 767160b commit d08672f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vizart-core",
"version": "2.0.0-rc.5",
"version": "2.0.0-rc.6",
"description": "Core Components for VizArt",
"main": "dist/vizart-core.js",
"module": "dist/vizart-core.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/layer/canvasLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const CanvasState = ()=> ({
});

const canvasLayer = (containerId, opt, composers) => {
const state = initState(containerId, opt, Object.assign({}, defaultComposers, composers, CanvasState()));

const base = initState(containerId, opt, Object.assign({}, defaultComposers, composers));
const state = Object.assign(base, CanvasState());

return Object.assign(
state,
Expand Down

0 comments on commit d08672f

Please sign in to comment.