From ec29127778af3da4f51e3d736ed79a325fa0246f Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Fri, 7 Feb 2020 20:15:59 +0100 Subject: [PATCH] Dashboard: last Angular 9 updates --- openvidu-server/src/dashboard/package.json | 3 ++- openvidu-server/src/dashboard/src/app/app.module.ts | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/openvidu-server/src/dashboard/package.json b/openvidu-server/src/dashboard/package.json index ef1ae93b..c9c6d181 100644 --- a/openvidu-server/src/dashboard/package.json +++ b/openvidu-server/src/dashboard/package.json @@ -48,7 +48,8 @@ "lint": "ng lint", "ng": "ng", "start": "ng serve", - "test": "ng test" + "test": "ng test", + "postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points" }, "version": "0.0.0" } diff --git a/openvidu-server/src/dashboard/src/app/app.module.ts b/openvidu-server/src/dashboard/src/app/app.module.ts index b1738236..17b629c9 100644 --- a/openvidu-server/src/dashboard/src/app/app.module.ts +++ b/openvidu-server/src/dashboard/src/app/app.module.ts @@ -35,9 +35,6 @@ import { RestService } from './services/rest.service'; AppMaterialModule, FlexLayoutModule ], - entryComponents: [ - CredentialsDialogComponent - ], providers: [InfoService, RestService], bootstrap: [AppComponent] })