diff options
author | 2025-01-07 11:19:22 +0800 | |
---|---|---|
committer | 2025-01-07 14:13:36 +0800 | |
commit | c20b305db465c51364c8c62d61fc6c964c8000d7 (patch) | |
tree | d07902ca160cfeda3cb87054c1f3dab7c1f463b7 /usecaseui-portal/src/app/app.module.ts | |
parent | 17e3b1a42c4fff3bd0741e2bfac242c7b6eadf81 (diff) |
Add functionality
Display of content in markdown format
Issue-ID: USECASEUI-844
Change-Id: I5907225117e5405e6ac7bff7405fedbb497dce6e
Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/app.module.ts')
-rw-r--r-- | usecaseui-portal/src/app/app.module.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/app.module.ts b/usecaseui-portal/src/app/app.module.ts index 3fabfe98..87844ee2 100644 --- a/usecaseui-portal/src/app/app.module.ts +++ b/usecaseui-portal/src/app/app.module.ts @@ -117,6 +117,7 @@ import { InputIntentConditionComponent } from './views/intent-management/input-i import { IntentReportDetailComponent } from './views/intent-management/intent-report-detail/intent-report-detail.component'; import { AngularDateTimePickerModule } from 'angular2-datetimepicker'; import { RobotComponent } from './views/robot/robot.component'; +import { MarkdownModule } from 'ngx-markdown'; export function HttpLoaderFactory(httpClient: HttpClient) { return new TranslateHttpLoader(httpClient, "./assets/i18n/", ".json"); } @@ -239,7 +240,8 @@ registerLocaleData(en); NgZorroAntdModule.forRoot(), NgxEchartsModule, AppRoutingModule, - AngularDateTimePickerModule + AngularDateTimePickerModule, + MarkdownModule.forRoot() ], bootstrap: [AppComponent], entryComponents: [ |