|
|
@ -27,6 +27,10 @@ class AccountDropdowns extends Component { |
|
|
|
return Object.keys(identities).map((key, index) => { |
|
|
|
return Object.keys(identities).map((key, index) => { |
|
|
|
const identity = identities[key] |
|
|
|
const identity = identities[key] |
|
|
|
const isSelected = identity.address === selected |
|
|
|
const isSelected = identity.address === selected |
|
|
|
|
|
|
|
console.log("address", identity.address) |
|
|
|
|
|
|
|
console.log("selected:", selected) |
|
|
|
|
|
|
|
console.log("isSelected:", isSelected) |
|
|
|
|
|
|
|
// debugger;
|
|
|
|
|
|
|
|
|
|
|
|
return h( |
|
|
|
return h( |
|
|
|
DropdownMenuItem, |
|
|
|
DropdownMenuItem, |
|
|
@ -51,7 +55,16 @@ class AccountDropdowns extends Component { |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, identity.name || ''), |
|
|
|
h('span', { |
|
|
|
|
|
|
|
style: { |
|
|
|
|
|
|
|
marginLeft: '20px', |
|
|
|
|
|
|
|
fontSize: '24px', |
|
|
|
|
|
|
|
maxWidth: '145px', |
|
|
|
|
|
|
|
whiteSpace: 'nowrap', |
|
|
|
|
|
|
|
overflow: 'hidden', |
|
|
|
|
|
|
|
textOverflow: 'ellipsis', |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, identity.name || ''), |
|
|
|
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null), |
|
|
|
h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, isSelected ? h('.check', '✓') : null), |
|
|
|
] |
|
|
|
] |
|
|
|
) |
|
|
|
) |
|
|
|