Skip to content

Commit 3cb345a

Browse files
committed
added CUSTOM_ELEMENTS_SCHEMA in subird video player module
1 parent a43fa35 commit 3cb345a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

projects/sunbird-video-player/src/lib/sunbird-video-player.module.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NgModule } from '@angular/core';
1+
import { NgModule, CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { FormsModule } from '@angular/forms';
44
import { SunbirdPlayerSdkModule } from '@project-sunbird/sunbird-player-sdk-v9';
@@ -18,6 +18,7 @@ import { QumlLibraryModule } from '@project-sunbird/sunbird-quml-player-v9';
1818
QumlLibraryModule,
1919
],
2020
providers: [ErrorService],
21-
exports: [SunbirdVideoPlayerComponent , SunbirdPlayerSdkModule]
21+
exports: [SunbirdVideoPlayerComponent , SunbirdPlayerSdkModule],
22+
schemas: [CUSTOM_ELEMENTS_SCHEMA]
2223
})
2324
export class SunbirdVideoPlayerModule { }

0 commit comments

Comments
 (0)