My application is on Ember 3.14 and since updating to the latest ember-data-change-tracker version (0.10.1).
The config/environment.js uses the following configuration for this addon:
changeTracker: { trackHasMany: true, auto: true, enableIsDirty: true },
Problem: the model event method ready no longer fires after creating a new model in the store.
The recently merged PR #87 removes the calls to this._super in the ready method. Can this be the issue?
Or is there any other configuration needed to make things work with the latest addon?
My application is on Ember 3.14 and since updating to the latest
ember-data-change-trackerversion (0.10.1).The
config/environment.jsuses the following configuration for this addon:Problem: the model event method
readyno longer fires after creating a new model in the store.The recently merged PR #87 removes the calls to
this._superin thereadymethod. Can this be the issue?Or is there any other configuration needed to make things work with the latest addon?