Adds copy to clipboard in owners table (#918)

This commit is contained in:
Agustin Pane 2020-05-15 11:59:10 -03:00 committed by GitHub
parent 77e4987919
commit df8897c284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class ManageOwners extends React.Component<Props, State> {
{autoColumns.map((column: Column) => ( {autoColumns.map((column: Column) => (
<TableCell align={column.align} component="td" key={column.id} style={cellWidth(column.width)}> <TableCell align={column.align} component="td" key={column.id} style={cellWidth(column.width)}>
{column.id === OWNERS_TABLE_ADDRESS_ID ? ( {column.id === OWNERS_TABLE_ADDRESS_ID ? (
<OwnerAddressTableCell address={row[column.id]} /> <OwnerAddressTableCell address={row[column.id]} showLinks />
) : ( ) : (
row[column.id] row[column.id]
)} )}