Commit 660034702810baf89633d63e9db363abd12481d5
1 parent
e7e3c964
Moved component tb-compact to shared module
Showing
4 changed files
with
5 additions
and
5 deletions
... | ... | @@ -21,7 +21,6 @@ import { AddEntityDialogComponent } from '@home/components/entity/add-entity-dia |
21 | 21 | import { EntitiesTableComponent } from '@home/components/entity/entities-table.component'; |
22 | 22 | import { DetailsPanelComponent } from '@home/components/details-panel.component'; |
23 | 23 | import { EntityDetailsPanelComponent } from '@home/components/entity/entity-details-panel.component'; |
24 | -import { ContactComponent } from '@home/components/contact.component'; | |
25 | 24 | import { AuditLogDetailsDialogComponent } from '@home/components/audit-log/audit-log-details-dialog.component'; |
26 | 25 | import { AuditLogTableComponent } from '@home/components/audit-log/audit-log-table.component'; |
27 | 26 | import { EventTableHeaderComponent } from '@home/components/event/event-table-header.component'; |
... | ... | @@ -74,7 +73,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel |
74 | 73 | AddEntityDialogComponent, |
75 | 74 | DetailsPanelComponent, |
76 | 75 | EntityDetailsPanelComponent, |
77 | - ContactComponent, | |
78 | 76 | AuditLogTableComponent, |
79 | 77 | AuditLogDetailsDialogComponent, |
80 | 78 | EventContentDialogComponent, |
... | ... | @@ -126,7 +124,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel |
126 | 124 | AddEntityDialogComponent, |
127 | 125 | DetailsPanelComponent, |
128 | 126 | EntityDetailsPanelComponent, |
129 | - ContactComponent, | |
130 | 127 | AuditLogTableComponent, |
131 | 128 | EventTableComponent, |
132 | 129 | RelationTableComponent, | ... | ... |
ui-ngx/src/app/shared/components/contact.component.html
renamed from
ui-ngx/src/app/modules/home/components/contact.component.html
ui-ngx/src/app/shared/components/contact.component.ts
renamed from
ui-ngx/src/app/modules/home/components/contact.component.ts
... | ... | @@ -133,6 +133,7 @@ import { JsonObjectEditDialogComponent } from '@shared/components/dialog/json-ob |
133 | 133 | import { HistorySelectorComponent } from './components/time/history-selector/history-selector.component'; |
134 | 134 | import { EntityGatewaySelectComponent } from '@shared/components/entity/entity-gateway-select.component'; |
135 | 135 | import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list.component'; |
136 | +import { ContactComponent } from '@shared/components/contact.component'; | |
136 | 137 | |
137 | 138 | @NgModule({ |
138 | 139 | providers: [ |
... | ... | @@ -218,7 +219,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list |
218 | 219 | TbJsonToStringDirective, |
219 | 220 | JsonObjectEditDialogComponent, |
220 | 221 | HistorySelectorComponent, |
221 | - EntityGatewaySelectComponent | |
222 | + EntityGatewaySelectComponent, | |
223 | + ContactComponent | |
222 | 224 | ], |
223 | 225 | imports: [ |
224 | 226 | CommonModule, |
... | ... | @@ -379,7 +381,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list |
379 | 381 | TranslateModule, |
380 | 382 | JsonObjectEditDialogComponent, |
381 | 383 | HistorySelectorComponent, |
382 | - EntityGatewaySelectComponent | |
384 | + EntityGatewaySelectComponent, | |
385 | + ContactComponent | |
383 | 386 | ] |
384 | 387 | }) |
385 | 388 | export class SharedModule { } | ... | ... |