Skip to content

Commit

Permalink
fix: make properties public that are accessed by the template
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepinho committed Apr 24, 2017
1 parent 52de8bf commit 2ab4bd6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/single-tweet/single-tweet.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ import { TwitterService } from '../twitter.service';
styleUrls: ['./single-tweet.component.css']
})
export class SingleTweetComponent implements OnInit, OnDestroy {
loading: boolean = false;
tweet: Tweet;

private paramsSubscription: Subscription;
private loading: boolean = false;
private tweet: Tweet;

constructor(
private route: ActivatedRoute,
Expand Down

0 comments on commit 2ab4bd6

Please sign in to comment.