Commit 44ee8e35ce7fe82704e5da73f32c141dc4febe0f
1 parent
bfb5450d
Exists in
profile_search
showing search input
Showing
3 changed files
with
4 additions
and
2 deletions
Show diff stats
src/app/components/navbar/navbar.html
src/app/components/noosfero-blocks/profile-contents-search/profile-contents-search.component.ts
... | ... | @@ -26,7 +26,7 @@ export class ProfileContentsSearch { |
26 | 26 | |
27 | 27 | search() { |
28 | 28 | console.log(this.profile.id); |
29 | - var profileId = 53; //FIXME | |
29 | + var profileId = this.profile.id; //FIXME | |
30 | 30 | var params = this.defaultParams; |
31 | 31 | this.articleService.getByProfile(profileId, params).then((response: any) => { |
32 | 32 | this.members = response.data.people; | ... | ... |