Skip to content

Commit

Permalink
Merge pull request #1888 from PublicisSapient/reports-module-RS
Browse files Browse the repository at this point in the history
Moving CumulativeLineChart to SharedModule
  • Loading branch information
risshukl0 authored Feb 6, 2025
2 parents bde1f73 + f5a40fe commit 80121d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions UI/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ import { GroupBarChartComponent } from './component/group-bar-chart/group-bar-ch
import { CommentsComponent } from './component/comments/comments.component';
import { CommentsV2Component } from './component/comments-v2/comments-v2.component';
import { HorizontalPercentBarChartComponent } from './component/horizontal-percent-bar-chart/horizontal-percent-bar-chart.component';
import { CumulativeLineChartComponent } from './component/cumulative-line-chart/cumulative-line-chart.component';
import { InputTextModule } from 'primeng/inputtext';
import { StackedAreaChartComponent } from './component/stacked-area-chart/stacked-area-chart.component';
import { FeedbackComponent } from './feedback/feedback.component';
Expand Down Expand Up @@ -178,7 +177,6 @@ export function initializeApp(appInitializerService: AppInitializerService) {
UnauthorisedAccessComponent,
GroupBarChartComponent,
HorizontalPercentBarChartComponent,
CumulativeLineChartComponent,
StackedAreaChartComponent,
FeedbackComponent,
KpiTableComponent,
Expand Down
7 changes: 5 additions & 2 deletions UI/src/app/shared-module/shared-module.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ import { TrendIndicatorV2Component } from '../dashboardv2/trend-indicator-v2/tre
import { HeaderComponent } from '../dashboardv2/header-v2/header.component';

import { RecentCommentsComponent } from '../component/recent-comments/recent-comments.component';
import { CumulativeLineChartComponent } from '../component/cumulative-line-chart/cumulative-line-chart.component';


@NgModule({
Expand Down Expand Up @@ -137,7 +138,8 @@ import { RecentCommentsComponent } from '../component/recent-comments/recent-com
HorizontalPercentBarChartv2Component,
ChartWithFiltersComponent,
HeaderComponent,
RecentCommentsComponent
RecentCommentsComponent,
CumulativeLineChartComponent
],
declarations: [
ProjectFilterComponent,
Expand Down Expand Up @@ -171,7 +173,8 @@ import { RecentCommentsComponent } from '../component/recent-comments/recent-com
TooltipV2Component,
HorizontalPercentBarChartv2Component,
HeaderComponent,
RecentCommentsComponent
RecentCommentsComponent,
CumulativeLineChartComponent

],
providers: [ConfirmationService, KpiHelperService]
Expand Down

0 comments on commit 80121d2

Please sign in to comment.