Commit d3e2fb4e815ce6df288da24ef80350b5452167b7
1 parent
f9734ec5
Exists in
master
and in
30 other branches
Removed console logs from people component
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 | } |