Skip to content

Commit 0a61301

Browse files
committed
added missing class name
1 parent cc3fd3d commit 0a61301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/service/DataQuery/Persistence/ReadDataQuery.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class ReadDataQueryService {
4646

4747
public readDataQueryById(id: number): Observable<SavedDataQuery> {
4848
return this.dataQueryApiService.getDataQueryById(id).pipe(
49-
switchMap((data) => {
49+
switchMap((data: SavedDataQueryData) => {
5050
try {
5151
TypeAssertion.assertSavedDataQueryData(data);
5252
return this.transformDataQuery(data);

0 commit comments

Comments
 (0)