fix: dashboard sidebar expanding.

This commit is contained in:
a.bouhuolia
2021-04-19 18:34:02 +02:00
parent c6aca4ecfa
commit f29c1b6cec
27 changed files with 178 additions and 230 deletions

View File

@@ -1,4 +1,5 @@
import React, { useContext } from 'react';
import classNames from 'classnames';
import TableContext from './TableContext';
/**
@@ -20,10 +21,12 @@ export default function TableFooter() {
{group.headers.map((column) => (
<div
{...column.getFooterProps({
className: 'td',
className: classNames(column.className || '', 'td'),
})}
>
{column.render('Footer')}
<div className={'cell-inner'}>
{column.render('Footer')}
</div>
</div>
))}
</div>