1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

ui - dropdown - use Object.assign syntax to appease coverage parser

This commit is contained in:
kumavis 2017-08-03 21:32:08 -07:00
parent 5a9257208c
commit 29dcadc346

View File

@ -63,7 +63,7 @@ class DropdownMenuItem extends Component {
onClick()
closeMenu()
},
style: {
style: Object.assign({
listStyle: 'none',
padding: '8px 0px 8px 0px',
fontSize: '18px',
@ -73,8 +73,7 @@ class DropdownMenuItem extends Component {
display: 'flex',
justifyContent: 'flex-start',
alignItems: 'center',
...style,
},
}, style),
},
children
)