This is an automated email from the ASF dual-hosted git repository. mfholz pushed a commit to branch breadcrumb-dashboard in repository https://gitbox.apache.org/repos/asf/streampipes.git
commit 3956827ab57c9ddbaf55a555ab99b2c0759e9ae8 Author: Marcelfrueh <[email protected]> AuthorDate: Fri Apr 4 11:13:57 2025 +0200 fix: breadcrumb dashboard --- ui/src/app/dashboard/components/panel/dashboard-panel.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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..cc4a4dff56 100644 --- a/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts +++ b/ui/src/app/dashboard/components/panel/dashboard-panel.component.ts @@ -50,6 +50,7 @@ import { DataExplorerRoutingService } from '../../../data-explorer-shared/servic import { DataExplorerDetectChangesService } from '../../../data-explorer/services/data-explorer-detect-changes.service'; import { SupportsUnsavedChangeDialog } from '../../../data-explorer-shared/models/dataview-dashboard.model'; import { TranslateService } from '@ngx-translate/core'; +import { SpDashboardRoutes } from '../../dashboard.routes'; @Component({ selector: 'sp-dashboard-panel', @@ -206,7 +207,7 @@ export class DashboardPanelComponent this.originalDashboard = JSON.parse(JSON.stringify(dashboard)); this.breadcrumbService.updateBreadcrumb( this.breadcrumbService.makeRoute( - [SpDataExplorerRoutes.BASE], + [SpDashboardRoutes.BASE], this.dashboard.name, ), );
