Commit 5ddf6d1a0efc3ec990f93134e63c6996fab76264
1 parent
eb78feb6
Exists in
master
and in
30 other branches
Fix main component dependencies
Showing
1 changed file
with
3 additions
and
4 deletions
Show diff stats
src/app/main/main.component.ts
@@ -15,7 +15,6 @@ import {ProfileImageBlockComponent} from "../layout/blocks/profile-image-block/p | @@ -15,7 +15,6 @@ import {ProfileImageBlockComponent} from "../layout/blocks/profile-image-block/p | ||
15 | import {RawHTMLBlockComponent} from "../layout/blocks/raw-html/raw-html.component"; | 15 | import {RawHTMLBlockComponent} from "../layout/blocks/raw-html/raw-html.component"; |
16 | 16 | ||
17 | import {MembersBlockComponent} from "./../layout/blocks/members-block/members-block.component"; | 17 | import {MembersBlockComponent} from "./../layout/blocks/members-block/members-block.component"; |
18 | -import {PeopleBlockComponent} from "./../layout/blocks/people-block/people-block.component"; | ||
19 | import {CommunitiesBlockComponent} from "./../layout/blocks/communities-block/communities-block.component"; | 18 | import {CommunitiesBlockComponent} from "./../layout/blocks/communities-block/communities-block.component"; |
20 | import {NoosferoTemplate} from "../shared/pipes/noosfero-template.filter"; | 19 | import {NoosferoTemplate} from "../shared/pipes/noosfero-template.filter"; |
21 | import {DateFormat} from "../shared/pipes/date-format.filter"; | 20 | import {DateFormat} from "../shared/pipes/date-format.filter"; |
@@ -83,16 +82,16 @@ export class EnvironmentContent { | @@ -83,16 +82,16 @@ export class EnvironmentContent { | ||
83 | directives: [ | 82 | directives: [ |
84 | ArticleBlogComponent, ArticleViewComponent, BoxesComponent, BlockComponent, | 83 | ArticleBlogComponent, ArticleViewComponent, BoxesComponent, BlockComponent, |
85 | EnvironmentComponent, | 84 | EnvironmentComponent, |
86 | - LinkListBlockComponent, CommunitiesBlockComponent | 85 | + LinkListBlockComponent, CommunitiesBlockComponent, |
87 | MainBlockComponent, RecentDocumentsBlockComponent, Navbar, ProfileImageBlockComponent, | 86 | MainBlockComponent, RecentDocumentsBlockComponent, Navbar, ProfileImageBlockComponent, |
88 | - MembersBlockComponent, PeopleBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent | 87 | + MembersBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent |
89 | ], | 88 | ], |
90 | providers: [AuthService, SessionService, NotificationService, BodyStateClassesService] | 89 | providers: [AuthService, SessionService, NotificationService, BodyStateClassesService] |
91 | }) | 90 | }) |
92 | @StateConfig([ | 91 | @StateConfig([ |
93 | { | 92 | { |
94 | url: '', | 93 | url: '', |
95 | - component: MainContentComponent, | 94 | + component: MainContentComponent, |
96 | abstract: true, | 95 | abstract: true, |
97 | name: 'main', | 96 | name: 'main', |
98 | }, | 97 | }, |