minor spacing changes
This commit is contained in:
parent
56f78dd906
commit
5229aff9ab
2 changed files with 2 additions and 2 deletions
|
|
@ -609,7 +609,7 @@ export default function ResponsiveTable<T extends Object>(props: Props<T>) {
|
|||
// console.log(j)
|
||||
if (filterList.includes(column.title) || column.hidden) return null
|
||||
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)}
|
||||
</TableCell>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -431,7 +431,7 @@ export default function Devices() {
|
|||
const description = device.settings?.description ?? ""
|
||||
let size = (hasCo2 && !groupGas) ? 26 : 36
|
||||
return (
|
||||
<Box >
|
||||
<Box className={classes.descriptionCellContainer} >
|
||||
<Tooltip title={description}>
|
||||
<span>
|
||||
{description.length > size
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue