variables accessibility fixed

This commit is contained in:
Nicolas Constant 2019-01-28 00:15:27 -05:00
parent 8624a2f954
commit 7b91b1acc1
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import { StatusWrapper } from '../stream.component';
styleUrls: ['./stream-statuses.component.scss']
})
export class StreamStatusesComponent implements OnInit, OnDestroy {
private isLoading = false; //TODO
isLoading = false; //TODO
private _streamElement: StreamElement;
private account: AccountInfo;

View File

@ -11,7 +11,7 @@ import { Status, Results, Context } from '../../../services/models/mastodon.inte
})
export class ThreadComponent implements OnInit {
statuses: StatusWrapper[] = [];
private isLoading: boolean;
isLoading: boolean;
@Output() browseAccountEvent = new EventEmitter<string>();
@Output() browseHashtagEvent = new EventEmitter<string>();