Skip to content

Commit

Permalink
fixup! feat(nutanix): add nutanix node popin
Browse files Browse the repository at this point in the history
Signed-off-by: Thibault Barske <[email protected]>
  • Loading branch information
tibs245 committed Jan 9, 2025
1 parent 8f4e37b commit 25981ce
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 @@ -13,7 +13,7 @@ export default /* @ngInject */ ($stateProvider) => {
goBack: /* @ngInject */ (goToDashboard) => goToDashboard,
nodeTechnicalDetails: /* @ngInject */ (NutanixService, cluster) =>
NutanixService.getNodeHardwareInfo(cluster.targetSpec.nodes[0].server),
nodeServicesDetails: (NutanixService, server) =>
nodeServicesDetails: /* ngInject */ (NutanixService, server) =>
NutanixService.getAllServicesDetails(server.serviceId),
nodePricing: /* ngInject */ (NutanixService, nodeServicesDetails) =>
NutanixService.constructor.getServicesTotalPrice(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default /* @ngInject */ ($stateProvider) => {
$state.go('nutanix.dashboard.nodes.all'),
nodeTechnicalDetails: /* @ngInject */ (NutanixService, cluster) =>
NutanixService.getNodeHardwareInfo(cluster.targetSpec.nodes[0].server),
nodeServicesDetails: (NutanixService, server) =>
nodeServicesDetails: /* ngInject */ (NutanixService, server) =>
NutanixService.getAllServicesDetails(server.serviceId),
nodePricing: /* ngInject */ (NutanixService, nodeServicesDetails) =>
NutanixService.constructor.getServicesTotalPrice(
Expand Down

0 comments on commit 25981ce

Please sign in to comment.