Skip to content

Commit 9467f4e

Browse files
author
Andrea Barbasso
committed
[DSC-1401] fix missing import
1 parent b46a87b commit 9467f4e

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/app/shared/explore/explore.module.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { ThemedSearchSectionComponent } from './section-component/search-section
2020
import { TextSectionComponent } from './section-component/text-section/text-section.component';
2121
import { ThemedTextSectionComponent } from './section-component/text-section/themed-text-section.component';
2222
import { SharedModule } from '../shared.module';
23+
import { MarkdownViewerModule } from '../markdown-viewer/markdown-viewer.module';
2324

2425
const COMPONENTS = [
2526
BrowseSectionComponent,
@@ -42,10 +43,11 @@ const COMPONENTS = [
4243
declarations: [
4344
...COMPONENTS
4445
],
45-
imports: [
46-
CommonModule,
47-
SharedModule
48-
],
46+
imports: [
47+
CommonModule,
48+
SharedModule,
49+
MarkdownViewerModule
50+
],
4951
exports: [
5052
...COMPONENTS
5153
]

0 commit comments

Comments
 (0)