adding logs about rows to try to find the undefined one in the table

This commit is contained in:
csawatzky 2025-04-10 11:25:18 -06:00
parent 0837b4fc7b
commit 9d3cd41d5f
7 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,7 @@ import ResponsiveTable, { Column } from "common/ResponsiveTable";
//import { getTableIcons } from "common/ResponsiveTable";
//import MaterialTable from "material-table";
import { pond } from "protobuf-ts/pond";
import { useEffect } from "react";
import { distanceConversion, getDistanceUnit } from "utils";
interface Props {
@ -55,6 +56,10 @@ export default function CableMounting(props: Props) {
}
]
useEffect(()=>{
console.log("cableMounting: " + bin.CableSums)
},[bin])
return (
<ResponsiveTable<CableSum>
title={<Typography style={{ fontSize: 20, fontWeight: 650 }}>Install Guide</Typography>}