I get obejct in children component:
@Input() public object: ObjectLayer;
Then I try to update this object by reference:
this.object.id = 100;
But parent components does not react on this. Also I tried to reassign object:
Object.assign(this.object, {...this.object});
How to fix it?
The parent component has no change detection strategy