Skip to content

Commit

Permalink
Merge pull request #298 from ertush/hotfix-dev
Browse files Browse the repository at this point in the history
Keph Level facility dashboard for a fix
  • Loading branch information
ertush authored Feb 7, 2024
2 parents 9deb847 + d117c16 commit f59f702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/dashboard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1046,9 +1046,9 @@ function Dashboard(props) {
</tr>
</thead>
<tbody className="text-lg">
{Object.entries(props?.data?.keph_level ?? [])?.map(([keph, count], i) => (
{props?.data?.keph_level?.map(({name, count}, i) => (
<tr key={i}>
<td className="table-cell text-left text-gray-900 p-2">{keph}</td>
<td className="table-cell text-left text-gray-900 p-2">{name}</td>
<td className="table-cell text-right font-semibold text-gray-900 p-2">{count || 0}</td>
</tr>
))}
Expand Down

0 comments on commit f59f702

Please sign in to comment.