Open lawliet616 opened 6 years ago
I found the bad line: src/DataTable.ts 6. row
import {ReplaySubject} from "rxjs/Rx";
change that to
import {ReplaySubject} from "rxjs/ReplaySubject";
@lawliet616 Did it work for you after changing the line? What else did you do to get it to work? It won't work for me. Tried npm rebuild, but to no avail...
@markschmid I forked this project, fixed that line and now I'm using it this way in my package.json:
"angular2-datatable": "github:lawliet616/angular2-datatable"
Try it, it works for me.
@lawliet616 Thanks! I tried but it won't work (same error). I've found that when I update typescript to 2.5, it works...
Angular: 5.0.2 angular2-datatable: 0.6.0
When I run the ng build --prod command I get the following error:
The reason is probably that the project has bad rxjs imports, like:
with should be replaced by:
Could you fix it?