[angular2 RC4 + @angular/forms module]
I have a component using OnPush change detection containing a FormGroup.
This form contains a FormControl with an async validator.
When the validation is complete (no more pending), the view is not refresh.
Only the input blur event makes view refresh..
If I remove the OnPush change detection, it works properly.
Is it an angular bug or I'm doing something wrong?