I'm have project write by Angular But in my component using ChangeDetectionStrategy.OnPush I update properti to new value from storage but UI not update So anyonce can help me solve this problem (can use Observeble for pipeAsync) Thanks
With OnPush, you need to tell Angular Component to detect change and update outside the event.
With your case I think
this.cdRef.markForCheck(); // Tell Angular to run detectChanges on this component
Might work.