Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit b182149

Browse files
committed
roll version
1 parent 7102e0d commit b182149

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rete-stage0-render-plugin",
3-
"version": "1.0.0-beta1",
3+
"version": "1.0.0-beta2",
44
"description": "Rete renderer using https://www.npmjs.com/package/stage0 (~1.6 kb framewok)",
55
"main": "build/stage0-render-plugin.min.js",
66
"repository": {

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function install(editor, params) {
5858
node.context = nodeProps;
5959
node._stage0 = createNode({ el, nodeProps, component });
6060
node.update = () => {
61-
node.stage0Context.update(nodeProps);
61+
node.stage0Context.rootUpdate(nodeProps);
6262
};
6363
});
6464

@@ -71,7 +71,7 @@ function install(editor, params) {
7171
};
7272
control._stage0 = createControl(editor, { el, control, controlProps });
7373
control.update = () => {
74-
control.stage0Context.update(controlProps);
74+
control.stage0Context.rootUpdate(controlProps);
7575
};
7676
});
7777

0 commit comments

Comments
 (0)