Manage owners responsiveness fix
This commit is contained in:
parent
73bd3aa6e8
commit
e09795c7ef
|
@ -145,7 +145,7 @@ class ManageOwners extends React.Component<Props, State> {
|
|||
defaultFixed
|
||||
noBorder
|
||||
>
|
||||
{(sortedData: Array<OwnerRow>) => sortedData.map((row: any, index: number) => (
|
||||
{(sortedData: List<OwnerRow>) => sortedData.map((row: any, index: number) => (
|
||||
<TableRow
|
||||
tabIndex={-1}
|
||||
key={index}
|
||||
|
|
|
@ -23,6 +23,7 @@ export const styles = () => ({
|
|||
actions: {
|
||||
justifyContent: 'flex-end',
|
||||
visibility: 'hidden',
|
||||
minWidth: '100px',
|
||||
},
|
||||
noBorderBottom: {
|
||||
'& > td': {
|
||||
|
|
Loading…
Reference in New Issue