Commit 5ddf6d1a0efc3ec990f93134e63c6996fab76264

Authored by Victor Costa
1 parent eb78feb6

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 15 import {RawHTMLBlockComponent} from "../layout/blocks/raw-html/raw-html.component";
16 16  
17 17 import {MembersBlockComponent} from "./../layout/blocks/members-block/members-block.component";
18   -import {PeopleBlockComponent} from "./../layout/blocks/people-block/people-block.component";
19 18 import {CommunitiesBlockComponent} from "./../layout/blocks/communities-block/communities-block.component";
20 19 import {NoosferoTemplate} from "../shared/pipes/noosfero-template.filter";
21 20 import {DateFormat} from "../shared/pipes/date-format.filter";
... ... @@ -83,16 +82,16 @@ export class EnvironmentContent {
83 82 directives: [
84 83 ArticleBlogComponent, ArticleViewComponent, BoxesComponent, BlockComponent,
85 84 EnvironmentComponent,
86   - LinkListBlockComponent, CommunitiesBlockComponent
  85 + LinkListBlockComponent, CommunitiesBlockComponent,
87 86 MainBlockComponent, RecentDocumentsBlockComponent, Navbar, ProfileImageBlockComponent,
88   - MembersBlockComponent, PeopleBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent
  87 + MembersBlockComponent, NoosferoTemplate, DateFormat, RawHTMLBlockComponent
89 88 ],
90 89 providers: [AuthService, SessionService, NotificationService, BodyStateClassesService]
91 90 })
92 91 @StateConfig([
93 92 {
94 93 url: '',
95   - component: MainContentComponent,
  94 + component: MainContentComponent,
96 95 abstract: true,
97 96 name: 'main',
98 97 },
... ...