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 ed55af5 commit 6b31912Copy full SHA for 6b31912
rubberduckvba.client/src/app/routes/inspection/inspection.component.ts
@@ -28,10 +28,10 @@ export class InspectionComponent implements OnInit {
28
29
ngOnInit(): void {
30
this.route.paramMap.pipe(
31
- switchMap(params => {
+ switchMap((params :any) => {
32
const name = params.get('name')!;
33
return this.api.getInspection(name);
34
- })).subscribe(e => {
+ })).subscribe((e :any) => {
35
console.log(e);
36
this.info = <InspectionViewModel>e;
37
});
0 commit comments