Showing
6 changed files
with
6 additions
and
5 deletions
... | ... | @@ -37,7 +37,7 @@ import { EntityId } from '@app/shared/models/id/entity-id'; |
37 | 37 | import { Widget } from '@app/shared/models/widget.models'; |
38 | 38 | import { DashboardService } from '@core/http/dashboard.service'; |
39 | 39 | import { forkJoin, Observable, of } from 'rxjs'; |
40 | -import { SelectTargetLayoutDialogComponent } from '@home/pages/dashboard/layout/select-target-layout-dialog.component'; | |
40 | +import { SelectTargetLayoutDialogComponent } from '@home/components/dashboard/select-target-layout-dialog.component'; | |
41 | 41 | import { MatDialog } from '@angular/material/dialog'; |
42 | 42 | import { |
43 | 43 | SelectTargetStateDialogComponent, | ... | ... |
ui-ngx/src/app/modules/home/components/dashboard/select-target-layout-dialog.component.html
renamed from
ui-ngx/src/app/modules/home/pages/dashboard/layout/select-target-layout-dialog.component.html
ui-ngx/src/app/modules/home/components/dashboard/select-target-layout-dialog.component.ts
renamed from
ui-ngx/src/app/modules/home/pages/dashboard/layout/select-target-layout-dialog.component.ts
... | ... | @@ -64,6 +64,7 @@ import { ImportDialogCsvComponent } from '@home/components/import-export/import- |
64 | 64 | import { TableColumnsAssignmentComponent } from '@home/components/import-export/table-columns-assignment.component'; |
65 | 65 | import { EventContentDialogComponent } from '@home/components/event/event-content-dialog.component'; |
66 | 66 | import { SharedHomeComponentsModule } from '@home/components/shared-home-components.module'; |
67 | +import { SelectTargetLayoutDialogComponent } from '@home/components/dashboard/select-target-layout-dialog.component'; | |
67 | 68 | |
68 | 69 | @NgModule({ |
69 | 70 | declarations: |
... | ... | @@ -109,6 +110,7 @@ import { SharedHomeComponentsModule } from '@home/components/shared-home-compone |
109 | 110 | CustomDialogContainerComponent, |
110 | 111 | ImportDialogComponent, |
111 | 112 | ImportDialogCsvComponent, |
113 | + SelectTargetLayoutDialogComponent, | |
112 | 114 | AddWidgetToDashboardDialogComponent, |
113 | 115 | TableColumnsAssignmentComponent |
114 | 116 | ], |
... | ... | @@ -150,7 +152,8 @@ import { SharedHomeComponentsModule } from '@home/components/shared-home-compone |
150 | 152 | CustomDialogContainerComponent, |
151 | 153 | ImportDialogComponent, |
152 | 154 | ImportDialogCsvComponent, |
153 | - TableColumnsAssignmentComponent | |
155 | + TableColumnsAssignmentComponent, | |
156 | + SelectTargetLayoutDialogComponent | |
154 | 157 | ], |
155 | 158 | providers: [ |
156 | 159 | WidgetComponentService, | ... | ... |
... | ... | @@ -74,7 +74,7 @@ import { |
74 | 74 | ManageDashboardLayoutsDialogComponent, |
75 | 75 | ManageDashboardLayoutsDialogData |
76 | 76 | } from '@home/pages/dashboard/layout/manage-dashboard-layouts-dialog.component'; |
77 | -import { SelectTargetLayoutDialogComponent } from '@home/pages/dashboard/layout/select-target-layout-dialog.component'; | |
77 | +import { SelectTargetLayoutDialogComponent } from '@home/components/dashboard/select-target-layout-dialog.component'; | |
78 | 78 | import { |
79 | 79 | DashboardSettingsDialogComponent, |
80 | 80 | DashboardSettingsDialogData | ... | ... |
... | ... | @@ -32,7 +32,6 @@ import { EditWidgetComponent } from './edit-widget.component'; |
32 | 32 | import { DashboardWidgetSelectComponent } from './dashboard-widget-select.component'; |
33 | 33 | import { AddWidgetDialogComponent } from './add-widget-dialog.component'; |
34 | 34 | import { ManageDashboardLayoutsDialogComponent } from './layout/manage-dashboard-layouts-dialog.component'; |
35 | -import { SelectTargetLayoutDialogComponent } from './layout/select-target-layout-dialog.component'; | |
36 | 35 | import { DashboardSettingsDialogComponent } from './dashboard-settings-dialog.component'; |
37 | 36 | import { ManageDashboardStatesDialogComponent } from './states/manage-dashboard-states-dialog.component'; |
38 | 37 | import { DashboardStateDialogComponent } from './states/dashboard-state-dialog.component'; |
... | ... | @@ -51,7 +50,6 @@ import { SelectTargetStateDialogComponent } from './states/select-target-state-d |
51 | 50 | DashboardWidgetSelectComponent, |
52 | 51 | AddWidgetDialogComponent, |
53 | 52 | ManageDashboardLayoutsDialogComponent, |
54 | - SelectTargetLayoutDialogComponent, | |
55 | 53 | DashboardSettingsDialogComponent, |
56 | 54 | ManageDashboardStatesDialogComponent, |
57 | 55 | DashboardStateDialogComponent, | ... | ... |