diff --git a/js/src/ui/Dropdown/dropdown.js b/js/src/ui/Dropdown/dropdown.js index 8a0e5e1bf..5a071f032 100644 --- a/js/src/ui/Dropdown/dropdown.js +++ b/js/src/ui/Dropdown/dropdown.js @@ -29,17 +29,17 @@ **/ import React, { PropTypes } from 'react'; -import { Dropdown as DropdownUI } from 'semantic-ui-react'; +import { Dropdown as SemanticDropdown } from 'semantic-ui-react'; import styles from './dropdown.css'; -export default function Dropdown ({ defaultValue, disabled, fluid, icon, name, onBlur, onChange, onClick, onClose, onFocus, options, placeholder, scrolling, search, selection, text, value }) { +export default function Dropdown ({ defaultValue, disabled, fullWidth, fluid, hint, icon, name, onBlur, onChange, onClick, onClose, onFocus, options, placeholder, scrolling, search, selection, text, value }) { return ( -