Skip to content

Commit

Permalink
fix(nutanix): update dashboard lazy loading url
Browse files Browse the repository at this point in the history
update dashboard lazy loading url to fix propagation of child route

ref: MANAGER-16492

Signed-off-by: Thibault Barske <[email protected]>
  • Loading branch information
tibs245 committed Dec 17, 2024
1 parent fe56303 commit a00bae8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const moduleName = 'ovhManagerNutanixGeneralInfoLazyLoading';
angular.module(moduleName, ['ui.router', 'oc.lazyLoad']).config(
/* @ngInject */ ($stateProvider) => {
$stateProvider.state('nutanix.dashboard.general-info.**', {
url: '/general-info',
url: '/',
lazyLoad: ($transition$) => {
const $ocLazyLoad = $transition$.injector().get('$ocLazyLoad');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const moduleName = 'ovhManagerNutanixNodesAllLazyLoading';
angular.module(moduleName, ['ui.router', 'oc.lazyLoad']).config(
/* @ngInject */ ($stateProvider) => {
$stateProvider.state('nutanix.dashboard.nodes.all.**', {
url: '',
url: '/',
lazyLoad: ($transition$) => {
const $ocLazyLoad = $transition$.injector().get('$ocLazyLoad');

Expand Down

0 comments on commit a00bae8

Please sign in to comment.