minor spacing changes

This commit is contained in:
Carter 2025-06-03 12:21:02 -06:00
parent 56f78dd906
commit 5229aff9ab
2 changed files with 2 additions and 2 deletions

View file

@ -609,7 +609,7 @@ export default function ResponsiveTable<T extends Object>(props: Props<T>) {
// console.log(j) // console.log(j)
if (filterList.includes(column.title) || column.hidden) return null if (filterList.includes(column.title) || column.hidden) return null
if (column.render) return ( if (column.render) return (
<TableCell key={"row-"+index+"cell-"+j} sx={{padding: 0, width: rowWidths[j] ? rowWidths[j] : undefined}}> <TableCell key={"row-"+index+"cell-"+j} sx={{padding: 0, paddingRight: 2, width: rowWidths[j] ? rowWidths[j] : undefined}}>
{column.render(row)} {column.render(row)}
</TableCell> </TableCell>
) )

View file

@ -431,7 +431,7 @@ export default function Devices() {
const description = device.settings?.description ?? "" const description = device.settings?.description ?? ""
let size = (hasCo2 && !groupGas) ? 26 : 36 let size = (hasCo2 && !groupGas) ? 26 : 36
return ( return (
<Box > <Box className={classes.descriptionCellContainer} >
<Tooltip title={description}> <Tooltip title={description}>
<span> <span>
{description.length > size {description.length > size