Skip to content

Commit

Permalink
Merge pull request #4054 from dlabrecq/oci-fix
Browse files Browse the repository at this point in the history
OCI should use hasPreviousMonthData Vs isPreviousMonthData
  • Loading branch information
dlabrecq authored Oct 7, 2024
2 parents cebe0dd + a22edad commit f4d3b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/explorer/explorerUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export const getIsDataAvailable = ({
case PerspectiveType.oci:
isDataAvailable = hasData(ociProviders);
isCurrentMonthData = hasCurrentMonthData(ociProviders);
isPreviousMonthData = isPreviousMonthData(ociProviders);
isPreviousMonthData = hasPreviousMonthData(ociProviders);
break;
case PerspectiveType.ocp:
case PerspectiveType.ocpCloud:
Expand Down

0 comments on commit f4d3b0c

Please sign in to comment.