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