This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch 3725-add-dashboard-kiosk-mode
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit c142f35c822a6c5e2d3ad279ec59dcb0520e2e3e
Author: Dominik Riemer <[email protected]>
AuthorDate: Tue Aug 12 17:46:46 2025 +0200

    Remove loading bar
---
 .../streampipes/platform-services/src/lib/apis/dashboard.service.ts   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/ui/projects/streampipes/platform-services/src/lib/apis/dashboard.service.ts 
b/ui/projects/streampipes/platform-services/src/lib/apis/dashboard.service.ts
index 9539fe2831..cd0618bd8b 100644
--- 
a/ui/projects/streampipes/platform-services/src/lib/apis/dashboard.service.ts
+++ 
b/ui/projects/streampipes/platform-services/src/lib/apis/dashboard.service.ts
@@ -16,7 +16,7 @@
  *
  */
 
-import { HttpClient, HttpResponse } from '@angular/common/http';
+import { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';
 import { Injectable } from '@angular/core';
 import { Observable } from 'rxjs';
 import { SharedDatalakeRestService } from './shared-dashboard.service';
@@ -24,6 +24,7 @@ import {
     CompositeDashboard,
     Dashboard,
 } from '../model/dashboard/dashboard.model';
+import { NGX_LOADING_BAR_IGNORED } from '@ngx-loading-bar/http-client';
 
 @Injectable({
     providedIn: 'root',
@@ -52,6 +53,7 @@ export class DashboardService {
             {
                 headers,
                 observe: 'response',
+                context: new HttpContext().set(NGX_LOADING_BAR_IGNORED, true),
             },
         );
     }

Reply via email to