mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
fix: dashboard sidebar expanding.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user