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 = [
{
title: 'Preferences ',
icon: 'fa fa-user',
onClick: this.props.openUserPreferencesModal
icon: {
name: 'user',
},
onClick: this.props.openUserPreferencesModal,
},
{
title: 'About',
icon: 'fa fa-info',
link: 'http://ohif.org'
}
];
icon: {
name: 'info',
},
link: 'http://ohif.org',
},
]
}
render() {