doc: add missing LoadingState.Streaming (#37903)

The final query is missing this and does not work without it.
This commit is contained in:
Teppo Kurki 2021-08-14 16:35:33 +03:00 committed by GitHub
parent 6d08be157f
commit 5c69f899b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,6 +120,7 @@ query(options: DataQueryRequest<MyQuery>): Observable<DataQueryResponse> {
subscriber.next({
data: [frame],
key: query.refId,
state: LoadingState.Streaming,
});
}, 100);