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
length
I'm not positive this issue is caused by can-reflect, but canReflect.getKeyDependencies is the lowest level place I've narrowed it down to.
can-reflect
canReflect.getKeyDependencies
When a property depends on the length of another property it is displayed strangely. This code:
ViewModel: { numbers: { default() { return [1, 2, 3, 4, 5, 6]; } }, get oddNumbers() { return this.numbers.reduce((odds, num) => { if (num % 2 === 1) { odds.push(num); } return odds; }, []); } }
...returns this graph:
This should somehow be tied to numbers.length.
numbers.length
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not positive this issue is caused by
can-reflect
, butcanReflect.getKeyDependencies
is the lowest level place I've narrowed it down to.When a property depends on the
length
of another property it is displayed strangely. This code:...returns this graph:
This should somehow be tied to
numbers.length
.The text was updated successfully, but these errors were encountered: