From d117c166f55ba47a8ce22cdebdaf7ce6cca44bf8 Mon Sep 17 00:00:00 2001 From: eric Date: Thu, 8 Feb 2024 00:04:25 +0300 Subject: [PATCH] Keph Level facility dashboard for a fix --- pages/dashboard/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/dashboard/index.js b/pages/dashboard/index.js index 6a3906ab..73b6aca9 100644 --- a/pages/dashboard/index.js +++ b/pages/dashboard/index.js @@ -1046,9 +1046,9 @@ function Dashboard(props) { - {Object.entries(props?.data?.keph_level ?? [])?.map(([keph, count], i) => ( + {props?.data?.keph_level?.map(({name, count}, i) => ( - {keph} + {name} {count || 0} ))}