fix bindings

This commit is contained in:
Nicolas Constant 2020-02-14 22:54:03 -05:00
parent 6723656371
commit fb79e53b96
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
3 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,8 @@ export class FavoritesComponent implements OnInit {
isThread = false;
hasContentWarnings = false;
bufferStream: Status[] = []; //html compatibility only
@Output() browseAccountEvent = new EventEmitter<string>();
@Output() browseHashtagEvent = new EventEmitter<string>();
@Output() browseThreadEvent = new EventEmitter<OpenThreadEvent>();

View File

@ -22,6 +22,8 @@ export class MentionsComponent implements OnInit, OnDestroy {
isThread = false;
hasContentWarnings = false;
bufferStream: Status[] = []; //html compatibility only
@Output() browseAccountEvent = new EventEmitter<string>();
@Output() browseHashtagEvent = new EventEmitter<string>();
@Output() browseThreadEvent = new EventEmitter<OpenThreadEvent>();

View File

@ -23,6 +23,8 @@ export class ThreadComponent implements OnInit, OnDestroy {
isThread = true;
hasContentWarnings = false;
bufferStream: Status[] = []; //html compatibility only
private lastThreadEvent: OpenThreadEvent;
@Output() browseAccountEvent = new EventEmitter<string>();