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 Runtime
There is an issue with useComputed$ where in dev mode it works, in production it breaks and affects other components in the app
isolating the issue:
checkbox-trigger
aria-describedby={ describedByLabels ? describedByLabels.value : undefined }
describedByLabels is a computed
const describedByLabels = useComputed$(() => { const labels = []; if (context.description) { labels.push(descriptionId); } if (context.isErrorSig.value) { labels.push(errorId); } return labels.join(" ") || undefined; });
https://github.com/thejackshelton/v2-repro-computed/tree/main
Reproduction steps:
working behavior:
System: OS: macOS 15.1 CPU: (16) arm64 Apple M4 Max Memory: 2.26 GB / 48.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 20.12.2 - /usr/local/bin/node Yarn: 1.22.22 - /usr/local/bin/yarn npm: 10.5.0 - /usr/local/bin/npm pnpm: 9.5.0 - /usr/local/bin/pnpm bun: 1.1.7 - ~/.bun/bin/bun Browsers: Safari: 18.1 npmPackages: typescript: 5.4.5 => 5.4.5 undici: * => 7.4.0 vite: 5.3.5 => 5.3.5
No response
The text was updated successfully, but these errors were encountered:
Varixo
Successfully merging a pull request may close this issue.
Which component is affected?
Qwik Runtime
Describe the bug
There is an issue with useComputed$ where in dev mode it works, in production it breaks and affects other components in the app
isolating the issue:
checkbox-trigger
:describedByLabels is a computed
Reproduction
https://github.com/thejackshelton/v2-repro-computed/tree/main
Steps to reproduce
Reproduction steps:
working behavior:
System Info
Additional Information
No response
The text was updated successfully, but these errors were encountered: