15 docker client #2

Merged
Liosha merged 41 commits from 15-docker-client into development 2026-09-03 20:28:04 +02:00
Showing only changes of commit ebb011515a - Show all commits
@@ -15,11 +15,9 @@ export class CustomHttpInterceptor implements HttpInterceptor {
return next.handle(req)
.pipe(tap((event: HttpEvent<any>) => {
if (event instanceof HttpResponse) {
console.log('Interceptor увидел ответ:', event.url, 'status:', event.status, 'ok:', event.ok);
this.spinnerService.hide();
}
}, (error) => {
this.spinnerService.hide();
}))
;
}
}