mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
prevent wallet select to fire other events
This commit is contained in:
parent
3cafd60b07
commit
3c5ff6da1d
@ -1,4 +1,4 @@
|
|||||||
import React, { PureComponent } from 'react'
|
import React, { PureComponent, MouseEvent } from 'react'
|
||||||
import Dotdotdot from 'react-dotdotdot'
|
import Dotdotdot from 'react-dotdotdot'
|
||||||
import { toDataUrl } from 'ethereum-blockies'
|
import { toDataUrl } from 'ethereum-blockies'
|
||||||
import styles from './Account.module.scss'
|
import styles from './Account.module.scss'
|
||||||
@ -18,7 +18,8 @@ export default class Account extends PureComponent<
|
|||||||
isAccountInfoOpen: false
|
isAccountInfoOpen: false
|
||||||
}
|
}
|
||||||
|
|
||||||
private toggleAccountInfo() {
|
private toggleAccountInfo(event: MouseEvent) {
|
||||||
|
event.preventDefault()
|
||||||
this.setState({ isAccountInfoOpen: !this.state.isAccountInfoOpen })
|
this.setState({ isAccountInfoOpen: !this.state.isAccountInfoOpen })
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,7 +62,7 @@ export default class Account extends PureComponent<
|
|||||||
{isBurner ? (
|
{isBurner ? (
|
||||||
<button
|
<button
|
||||||
className={styles.toggle}
|
className={styles.toggle}
|
||||||
onClick={() => this.toggleAccountInfo()}
|
onClick={event => this.toggleAccountInfo(event)}
|
||||||
title="Show More Account Info"
|
title="Show More Account Info"
|
||||||
>
|
>
|
||||||
<Caret
|
<Caret
|
||||||
|
Loading…
Reference in New Issue
Block a user