Use new Dropdown props format

This commit is contained in:
dannyrb 2019-05-28 13:18:40 -04:00
parent b3f54b4500
commit 1c14f41bd0

View File

@ -29,15 +29,19 @@ class Header extends Component {
this.options = [ this.options = [
{ {
title: 'Preferences ', title: 'Preferences ',
icon: 'fa fa-user', icon: {
onClick: this.props.openUserPreferencesModal name: 'user',
},
onClick: this.props.openUserPreferencesModal,
}, },
{ {
title: 'About', title: 'About',
icon: 'fa fa-info', icon: {
link: 'http://ohif.org' name: 'info',
} },
]; link: 'http://ohif.org',
},
]
} }
render() { render() {