Merge pull request #262 from gnosis/236-change-owners-name
Feature #236: Edit owner name in read-only mode
This commit is contained in:
commit
8783eac2a0
|
@ -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>
|
||||
))}
|
||||
|
|
Loading…
Reference in New Issue