ryalman

Results 1 comments of ryalman

I put the WebComponentsReady listener directly into the main.ts. I tested it by putting a trivial combo-box and it worked. Replace `platformBrowserDynamic().bootstrapModule(AppModule);` with the below. ```typescript document.addEventListener('WebComponentsReady', () =>{ platformBrowserDynamic().bootstrapModule(AppModule);...