Skip to content

Commit

Permalink
fix: make members publicaly available for templates (codelyzer)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Feb 8, 2017
1 parent 3b35bc3 commit 35240cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/client/about/about.component.ts
Expand Up @@ -87,8 +87,8 @@ import {Http} from '@angular/http';
})

export class AboutComponent {
private ready: boolean = false;
private contributors: any;
ready: boolean = false;
contributors: any;

constructor(private http: Http) {
this.http.get('https://api.github.com/repos/SteveVanOpstal/LegendBuilder/contributors')
Expand Down
2 changes: 1 addition & 1 deletion src/client/summoner/summoner.component.ts
Expand Up @@ -19,7 +19,7 @@ import {LolApiService} from '../services/lolapi.service';
})

export class SummonerComponent {
private error: boolean = false;
error: boolean = false;

constructor(
private route: ActivatedRoute, private router: Router, private lolApi: LolApiService) {}
Expand Down

0 comments on commit 35240cc

Please sign in to comment.