mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Use .entries() instead of .keys(), and use more destructuring, for simpler code.
This commit is contained in:
parent
78f39bcce6
commit
562d2fadae
@ -193,20 +193,19 @@ SendTransactionScreen.prototype.render = function () {
|
||||
|
||||
h('datalist#addresses', {}, [
|
||||
// Corresponds to the addresses owned.
|
||||
Object.keys(props.identities).map((key) => {
|
||||
const identity = props.identities[key]
|
||||
Object.entries(props.identities).map(([key, { address, name }]) => {
|
||||
return h('option', {
|
||||
value: identity.address,
|
||||
label: identity.name,
|
||||
key: identity.address,
|
||||
value: address,
|
||||
label: name,
|
||||
key: address,
|
||||
})
|
||||
}),
|
||||
// Corresponds to previously sent-to addresses.
|
||||
props.addressBook.map((identity) => {
|
||||
props.addressBook.map(({ address, name }) => {
|
||||
return h('option', {
|
||||
value: identity.address,
|
||||
label: identity.name,
|
||||
key: identity.address,
|
||||
value: address,
|
||||
label: name,
|
||||
key: address,
|
||||
})
|
||||
}),
|
||||
]),
|
||||
|
Loading…
Reference in New Issue
Block a user