Skip to content

Commit

Permalink
chore: debug table rows generation
Browse files Browse the repository at this point in the history
  • Loading branch information
bigpaulie committed Apr 10, 2024
1 parent 9f51ecf commit f0ca743
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deploy-app/src/frontend/src/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ const Dashboard = () => {

const k8sRows = (versions: { [key: string]: any }) => {
let rows = [];
console.log('k8sRows() before loop', versions);
for (let version in versions) {
rows.push({
version: version,
Expand All @@ -136,6 +137,7 @@ const Dashboard = () => {
summary: versions[version].summary,
});
}
console.log('k8sRows() after loop', rows);
return rows;
};

Expand Down

0 comments on commit f0ca743

Please sign in to comment.