Я не уверен, что делать с объектом запроса, который возвращается для this.actions
this.actionCollection = this.db.collection('actions');
this.actions = this.actionCollection.ref.where('filterId', '==', this.filterId)
Что мне делать с this.actions
? Я пытаюсь установить его как свое мнение, но я получаю эту ошибку Error: InvalidPipeArgument: '[object Object]' for pipe 'AsyncPipe'
<h4>Actions List</h4>
<ul>
<li *ngFor="let action of actions | async">
{{action | json}}
</li>
</ul>