Hi,
OffCanvas is unable to inject my services despide I pass the injector as argument.
However, using Modal it works just fine as expected.
This works:
const ref = this.modalService.open(MyComponent, {
injector: this.injector
});
This doesn't:
const ref = this.offCanvasService.open(MyComponent, {
injector: this.injector
});
The error I get:
ERROR ɵNotFound: NG0201: No provider found for _MyService.
Modal suffered from the same issue in the past (see #4447)