diff --git a/ui/app/controllers/topology.js b/ui/app/controllers/topology.js index 4b9a38b060e..a16d411d4fb 100644 --- a/ui/app/controllers/topology.js +++ b/ui/app/controllers/topology.js @@ -143,4 +143,11 @@ export default class TopologyControllers extends Controller { this.filteredNodes = filteredNodesError.context; } } + + get breadcrumb() { + return { + label: 'Topology', + args: ['topology'], + }; + } } diff --git a/ui/app/templates/topology.hbs b/ui/app/templates/topology.hbs index d1c2cd42c5d..e2d060fa343 100644 --- a/ui/app/templates/topology.hbs +++ b/ui/app/templates/topology.hbs @@ -1,6 +1,4 @@ -{{#each this.breadcrumbs as |crumb|}} - -{{/each}} + {{page-title "Cluster Topology"}}
diff --git a/ui/config/environment.js b/ui/config/environment.js index 8357296ac02..fd9caf529fd 100644 --- a/ui/config/environment.js +++ b/ui/config/environment.js @@ -26,7 +26,7 @@ module.exports = function(environment) { APP: { blockingQueries: true, // TODO: revert before merging to main. - mirageScenario: 'allJobTypes', // convert to 'sysbatchSmall' when working on feature + mirageScenario: 'sysbatchSmall', // convert to 'sysbatchSmall' when working on feature mirageWithNamespaces: false, mirageWithTokens: true, mirageWithRegions: true,