Manage owners responsiveness fix

This commit is contained in:
Mikhail Mikheev 2019-09-09 18:36:29 +04:00
parent 73bd3aa6e8
commit e09795c7ef
2 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class ManageOwners extends React.Component<Props, State> {
defaultFixed defaultFixed
noBorder noBorder
> >
{(sortedData: Array<OwnerRow>) => sortedData.map((row: any, index: number) => ( {(sortedData: List<OwnerRow>) => sortedData.map((row: any, index: number) => (
<TableRow <TableRow
tabIndex={-1} tabIndex={-1}
key={index} key={index}

View File

@ -23,6 +23,7 @@ export const styles = () => ({
actions: { actions: {
justifyContent: 'flex-end', justifyContent: 'flex-end',
visibility: 'hidden', visibility: 'hidden',
minWidth: '100px',
}, },
noBorderBottom: { noBorderBottom: {
'& > td': { '& > td': {