Commit 8db9266d3e7c27340fa77f05197cc3207962aa4f
Exists in
master
and in
30 other branches
Merge branch 'people-block'
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
src/app/layout/blocks/people-block/people-block.component.ts
@@ -14,12 +14,10 @@ export class PeopleBlockComponent { | @@ -14,12 +14,10 @@ export class PeopleBlockComponent { | ||
14 | people: noosfero.Person[] = []; | 14 | people: noosfero.Person[] = []; |
15 | 15 | ||
16 | constructor(private environmentService: EnvironmentService) { | 16 | constructor(private environmentService: EnvironmentService) { |
17 | - console.debug("Created PeopleBlockComponent"); | ||
18 | } | 17 | } |
19 | 18 | ||
20 | ngOnInit() { | 19 | ngOnInit() { |
21 | this.environmentService.getEnvironmentPeople({ limit: '6' }).then((people: noosfero.Person[]) => { | 20 | this.environmentService.getEnvironmentPeople({ limit: '6' }).then((people: noosfero.Person[]) => { |
22 | - console.debug("People returned in PeopleBlockComponent: ", people); | ||
23 | this.people = people; | 21 | this.people = people; |
24 | }); | 22 | }); |
25 | } | 23 | } |