fixed issue with adding devices to group

This commit is contained in:
Carter 2025-04-29 10:45:24 -06:00
parent 765ac72431
commit 539dd667c7
3 changed files with 13 additions and 24 deletions

View file

@ -77,16 +77,16 @@ export default function GroupsPage() {
const columns = (): Column<pond.Group>[] => {
return [
{
title: "Size",
render: (group) => {
return (
<Box className={classes.smallCellContainer}>
{group.settings?.devices?.length ? group.settings.devices.length : 0}
</Box>
)
}
},
// {
// title: "Size",
// render: (group) => {
// return (
// <Box className={classes.smallCellContainer}>
// {group.settings?.devices?.length ? group.settings.devices.length : 0}
// </Box>
// )
// }
// },
{
title: "Group Name",
render: (group) => {