fixed issue with adding devices to group
This commit is contained in:
parent
765ac72431
commit
539dd667c7
3 changed files with 13 additions and 24 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue