Fix text overflow for dropdown components flagged by @frankiebee

feature/default_network_editable
sdtsui 7 years ago
parent 4b7fa27ad0
commit 88f4931c6f
  1. 15
      ui/app/components/account-dropdowns.js

@ -27,6 +27,10 @@ class AccountDropdowns extends Component {
return Object.keys(identities).map((key, index) => {
const identity = identities[key]
const isSelected = identity.address === selected
console.log("address", identity.address)
console.log("selected:", selected)
console.log("isSelected:", isSelected)
// debugger;
return h(
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),
]
)

Loading…
Cancel
Save