I would like to udpate my application view, triggered by events from service.
One of my services injects the ChangeDetectorRef. Compilation works, but I am getting a
You need to add your service to providers on component level:
@Component({ // ... providers: [MyService] }) export class SomeComponent { // ... }