diff --git a/demo-shell/src/app/app.module.ts b/demo-shell/src/app/app.module.ts index aaf3e5e302..186a552d28 100644 --- a/demo-shell/src/app/app.module.ts +++ b/demo-shell/src/app/app.module.ts @@ -54,6 +54,7 @@ import { PreviewService } from './services/preview.service'; import { BreadcrumbDemoComponent } from './components/breadcrumb-demo/breadcrumb-demo.component'; import { ContentNodeSelectorComponent } from './components/content-node-selector/content-node-selector.component'; import { NotificationsComponent } from './components/notifications/notifications.component'; +import { ReportIssueComponent } from './components/report-issue/report-issue.component'; @NgModule({ imports: [ @@ -108,7 +109,8 @@ import { NotificationsComponent } from './components/notifications/notifications BlobPreviewComponent, BreadcrumbDemoComponent, NotificationsComponent, - ContentNodeSelectorComponent + ContentNodeSelectorComponent, + ReportIssueComponent ], providers: [ { provide: AppConfigService, useClass: DebugAppConfigService }, // not use this service in production @@ -130,7 +132,10 @@ import { NotificationsComponent } from './components/notifications/notifications }, PreviewService ], - entryComponents: [VersionManagerDialogAdapterComponent, MetadataDialogAdapterComponent], + entryComponents: [ + VersionManagerDialogAdapterComponent, + MetadataDialogAdapterComponent + ], bootstrap: [AppComponent] }) export class AppModule {} diff --git a/demo-shell/src/app/app.routes.ts b/demo-shell/src/app/app.routes.ts index 92933c670c..bbf9f89188 100644 --- a/demo-shell/src/app/app.routes.ts +++ b/demo-shell/src/app/app.routes.ts @@ -51,6 +51,7 @@ import { BlobPreviewComponent } from './components/blob-preview/blob-preview.com import { BreadcrumbDemoComponent } from './components/breadcrumb-demo/breadcrumb-demo.component'; import { NotificationsComponent } from './components/notifications/notifications.component'; import { ContentNodeSelectorComponent } from './components/content-node-selector/content-node-selector.component'; +import { ReportIssueComponent } from './components/report-issue/report-issue.component'; export const appRoutes: Routes = [ { path: 'login', component: LoginComponent }, @@ -221,6 +222,10 @@ export const appRoutes: Routes = [ component: OverlayViewerComponent, canActivate: [AuthGuardEcm] }, + { + path: 'report-issue', + component: ReportIssueComponent + }, { path: 'datatable-lazy', loadChildren: 'app/components/lazy-loading/lazy-loading.module#LazyLoadingModule' diff --git a/demo-shell/src/app/components/report-issue/report-issue.component.html b/demo-shell/src/app/components/report-issue/report-issue.component.html new file mode 100644 index 0000000000..244ab876f7 --- /dev/null +++ b/demo-shell/src/app/components/report-issue/report-issue.component.html @@ -0,0 +1,9 @@ +