trying taking out the hidePagination

This commit is contained in:
csawatzky 2025-04-10 11:52:53 -06:00
parent 9d3cd41d5f
commit b835524700
3 changed files with 14 additions and 18 deletions

View file

@ -66,11 +66,11 @@ export default function CableMounting(props: Props) {
rows={bin.CableSums}
columns={columns}
page={0}
pageSize={0}
pageSize={5}
handleRowsPerPageChange={()=>{}}
setPage={()=>{}}
total={0}
hidePagination
//hidePagination
/>
)
}

View file

@ -133,11 +133,11 @@ export default function CableTable(props: Props) {
columns={columns}
rows={cableData}
page={0}
pageSize={0}
pageSize={5}
total={0}
setPage={()=>{}}
handleRowsPerPageChange={()=>{}}
hidePagination
//hidePagination
/>
);
}