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

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 24a6ebe70c fix: Breadcrumb dashboard (#3555)
24a6ebe70c is described below

commit 24a6ebe70c8deec9d256e017464001c4f8b6274f
Author: Marcel Früholz <[email protected]>
AuthorDate: Mon Apr 7 19:06:08 2025 +0200

    fix: Breadcrumb dashboard (#3555)
---
 ui/src/app/dashboard/components/panel/dashboard-panel.component.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts 
b/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts
index 2182ec07c0..ca0bfb05b0 100644
--- a/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts
+++ b/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts
@@ -45,7 +45,7 @@ import {
 } from '@streampipes/shared-ui';
 import { MatDialog } from '@angular/material/dialog';
 import { map, switchMap } from 'rxjs/operators';
-import { SpDataExplorerRoutes } from 
'../../../data-explorer/data-explorer.routes';
+import { SpDashboardRoutes } from '../../dashboard.routes';
 import { DataExplorerRoutingService } from 
'../../../data-explorer-shared/services/data-explorer-routing.service';
 import { DataExplorerDetectChangesService } from 
'../../../data-explorer/services/data-explorer-detect-changes.service';
 import { SupportsUnsavedChangeDialog } from 
'../../../data-explorer-shared/models/dataview-dashboard.model';
@@ -206,7 +206,7 @@ export class DashboardPanelComponent
             this.originalDashboard = JSON.parse(JSON.stringify(dashboard));
             this.breadcrumbService.updateBreadcrumb(
                 this.breadcrumbService.makeRoute(
-                    [SpDataExplorerRoutes.BASE],
+                    [SpDashboardRoutes.BASE],
                     this.dashboard.name,
                 ),
             );

Reply via email to