You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is more an Ember Data issue or an unimplemented feature etc
I have a getter that computes off a DS @attr. When the attr changes, the template updates correctly once, but if it changes again subsequently the template doesn't update.
Switching from @attr to @tracked works perfectly however, and so does displaying the attr directly in the template. The only failing case is a getter based off an attr.
I've confirmed that this is an issue with CPs in general, not just @attr (which is implemented as a CP under the hood). I've also confirmed that the work done in #18223 fixes this issue, so I'll add a test to that PR to ensure we cover it.
I'm not sure if this is more an Ember Data issue or an unimplemented feature etc
I have a getter that computes off a DS
@attr
. When the attr changes, the template updates correctly once, but if it changes again subsequently the template doesn't update.Switching from
@attr
to@tracked
works perfectly however, and so does displaying the attr directly in the template. The only failing case is a getter based off an attr.Repro here: wongpeiyi/octane-test@6d8b8f1
The text was updated successfully, but these errors were encountered: