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
Qwik optimizer (rust)
if prop is an aliased string, the optimizer does not change props to a single variable Doesn't work:
const Input = component$( ({ 'test': abcd}) => { return <div></div>; } );
Works:
const Input = component$( ({ test: abcd}) => { return <div></div>; } );
https://qwik.dev/playground/#f=Q040lhYkJxqI7yDVrS1ymgFaoFGtoF4CLHTVrRQSk5JTauF%2BR6QjUJMC0rCwBorXcgHdREo6hIYexHq4pzStRxPi0EuIAA
No response
v2
The text was updated successfully, but these errors were encountered:
probably same issue #3926
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Which component is affected?
Qwik optimizer (rust)
Describe the bug
if prop is an aliased string, the optimizer does not change props to a single variable
Doesn't work:
Works:
Reproduction
https://qwik.dev/playground/#f=Q040lhYkJxqI7yDVrS1ymgFaoFGtoF4CLHTVrRQSk5JTauF%2BR6QjUJMC0rCwBorXcgHdREo6hIYexHq4pzStRxPi0EuIAA
Steps to reproduce
No response
System Info
Additional Information
No response
The text was updated successfully, but these errors were encountered: