Skip to content

Commit

Permalink
fix(vue): fix not update style diff crash
Browse files Browse the repository at this point in the history
  • Loading branch information
zealotchen0 committed Oct 25, 2023
1 parent a45eda0 commit ecf6c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/js/packages/hippy-vue/src/renderer/native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ function updateChild(parentNode, notUpdateStyle = false) {
let eventNode;
let printedNode;
if (notUpdateStyle) {
nativeNode = getNativeNode(rootViewId, parentNode, refInfo);
nativeNode = getNativeNode(rootViewId, parentNode);
} else {
[nativeNode, eventNode, printedNode] = renderToNative(rootViewId, parentNode);
}
Expand Down

0 comments on commit ecf6c8a

Please sign in to comment.