From a22edad007363fdd10c4bf47a7a7eb62a684b986 Mon Sep 17 00:00:00 2001 From: Dan Labrecque Date: Mon, 7 Oct 2024 08:36:40 -0400 Subject: [PATCH] OCI should use hasPreviousMonthData Vs isPreviousMonthData --- src/routes/explorer/explorerUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/explorer/explorerUtils.ts b/src/routes/explorer/explorerUtils.ts index c2d6d6271..5cf3aae8c 100644 --- a/src/routes/explorer/explorerUtils.ts +++ b/src/routes/explorer/explorerUtils.ts @@ -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: