Skip to content

Commit

Permalink
fix(grid): fix html
Browse files Browse the repository at this point in the history
  • Loading branch information
nurikk committed Nov 22, 2021
1 parent be1fb69 commit 43232ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/components/groups/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ export class GroupsPage extends Component<PropsFromStore & StateApi & SceneApi &

]
return <div className="card">
<div className="card-body">
<Table id="groups" columns={columns} data={groups} />
</div>
<Table id="groups" columns={columns} data={groups} />
</div>

}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ota-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class OtaPage extends Component<PropsFromStore & OtaApi & WithTranslation<"ota">
]

return <div className="card">
<div className="card-body table-responsive">
<div className="table-responsive">
<Table id="otaDevices" columns={columns} data={otaDevices} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/zigbee/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function DevicesTable(props: DevicesTableProps) {
];

return (<div className="card">
<div className="table-responsive mt-1">
<div className="table-responsive">
<Table
id="zigbee"
columns={columns}
Expand Down

0 comments on commit 43232ad

Please sign in to comment.