mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Add QR functionality
This commit is contained in:
parent
81982d01c0
commit
6176a4b1bf
@ -144,6 +144,18 @@ class AccountDropdowns extends Component {
|
|||||||
},
|
},
|
||||||
'View account on Etherscan',
|
'View account on Etherscan',
|
||||||
),
|
),
|
||||||
|
h(
|
||||||
|
DropdownMenuItem,
|
||||||
|
{
|
||||||
|
closeMenu: () => {},
|
||||||
|
onClick: () => {
|
||||||
|
const { selected, identities } = this.props
|
||||||
|
var identity = identities[selected]
|
||||||
|
actions.showQrView(selected, identity ? identity.name : '')
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'Show QR Code',
|
||||||
|
),
|
||||||
h(
|
h(
|
||||||
DropdownMenuItem,
|
DropdownMenuItem,
|
||||||
{
|
{
|
||||||
@ -226,6 +238,7 @@ const mapDispatchToProps = (dispatch) => {
|
|||||||
showAccountDetail: (address) => dispatch(actions.showAccountDetail(address)),
|
showAccountDetail: (address) => dispatch(actions.showAccountDetail(address)),
|
||||||
addNewAccount: () => dispatch(actions.addNewAccount()),
|
addNewAccount: () => dispatch(actions.addNewAccount()),
|
||||||
showImportPage: () => dispatch(actions.showImportPage()),
|
showImportPage: () => dispatch(actions.showImportPage()),
|
||||||
|
showQrView: (selected, identity) => dispatch(actions.showQrView(selected, identity)),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user