We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--- a/src/main/java/X.java +++ b/src/main/java/X.java @@ -47,7 +47,10 @@ @JavaScriptBody(args = {"namespace", "name"}, javacall = true, body = "" + "namespace.__custom = namespace.__custom || {};\n" + "if (!namespace.__custom[name]) {\n" + - " namespace.__custom[name] = function (props) { return props.render.@X::render()(); }\n" + + " namespace.__custom[name] = function (props) {\n" + + " let r = props.render;\n" + + " return r.@X::render()();\n" + + " }\n" + "\n}; " + "return namespace.__custom[name];\n") public static native Object customComponent(Object namespace, String name);
The text was updated successfully, but these errors were encountered:
jtulach
No branches or pull requests
The text was updated successfully, but these errors were encountered: