-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
[Bug] Error when @computed property depends on a key that is not defined on a hash created using {{hash}} helper #19562
[Bug] Error when @computed property depends on a key that is not defined on a hash created using {{hash}} helper #19562
Comments
This line needs to have an Ideally we should add some tests to Glimmer VM to test the custom tag for functionality, but I'm not sure if that would actually test it well enough because most of the usage/implementation is in Ember 😕 we can definitely add an integration test on the Ember side though. |
it looks like rust-lang/crates.io#3656 is still failing, despite the bugfix 😢 |
@Turbo87 this fix was unrelated to the issue in Crates, that will be fixed by this PR: #19584 We are currently planning on landing that fix on Beta, and reverting the other fixes on release in order to reduce risk, it's clear that the changes to |
🐞 Describe the Bug
An error is raised when a
@computed
property depends on a key of a hash created using the{{hash}}
helper and the key is not defined in the hash.Example:
🔬 Minimal Reproduction
Minimal reproduction project
😕 Actual Behavior
The following error is being raised:
🤔 Expected Behavior
No error should be shown and the computed property should work properly.
🌍 Environment
➕ Additional Context
This was working properly a couple of days ago but started breaking in the latest beta version.
The text was updated successfully, but these errors were encountered: