Try to do it in NgOnChange lifecycle hook.
ngOnChanges(changes: SimpleChanges) { if (changes['username']) { this.username = changes['username'].currentValue; } if (changes['image_url']) { this.image_url = changes['image_url'].currentValue; }