Merge pull request #262 from gnosis/236-change-owners-name

Feature #236: Edit owner name in read-only mode
This commit is contained in:
Mikhail Mikheev 2019-11-14 10:26:25 +04:00 committed by GitHub
commit 8783eac2a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 25 deletions

View File

@ -162,7 +162,6 @@ class ManageOwners extends React.Component<Props, State> {
</TableCell> </TableCell>
))} ))}
<TableCell component="td"> <TableCell component="td">
{granted && (
<Row align="end" className={classes.actions}> <Row align="end" className={classes.actions}>
<Img <Img
alt="Edit owner" alt="Edit owner"
@ -171,6 +170,8 @@ class ManageOwners extends React.Component<Props, State> {
onClick={this.onShow('EditOwner', row)} onClick={this.onShow('EditOwner', row)}
testId={RENAME_OWNER_BTN_TEST_ID} testId={RENAME_OWNER_BTN_TEST_ID}
/> />
{granted && (
<>
<Img <Img
alt="Replace owner" alt="Replace owner"
className={classes.replaceOwnerIcon} className={classes.replaceOwnerIcon}
@ -187,8 +188,9 @@ class ManageOwners extends React.Component<Props, State> {
testId={REMOVE_OWNER_BTN_TEST_ID} testId={REMOVE_OWNER_BTN_TEST_ID}
/> />
)} )}
</Row> </>
) } ) }
</Row>
</TableCell> </TableCell>
</TableRow> </TableRow>
))} ))}