We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc3fd3d commit 0a61301Copy full SHA for 0a61301
src/app/service/DataQuery/Persistence/ReadDataQuery.service.ts
@@ -46,7 +46,7 @@ export class ReadDataQueryService {
46
47
public readDataQueryById(id: number): Observable<SavedDataQuery> {
48
return this.dataQueryApiService.getDataQueryById(id).pipe(
49
- switchMap((data) => {
+ switchMap((data: SavedDataQueryData) => {
50
try {
51
TypeAssertion.assertSavedDataQueryData(data);
52
return this.transformDataQuery(data);
0 commit comments