Added filtering and search to kanban board. BOD-176
This commit is contained in:
@@ -5,7 +5,7 @@ const { Option } = Select;
|
||||
//To be used as a form element only.
|
||||
|
||||
const EmployeeSearchSelect = (
|
||||
{ value, onChange, options, onSelect, onBlur },
|
||||
{ value, onChange, options, onSelect, onBlur, ...restProps },
|
||||
ref
|
||||
) => {
|
||||
const [option, setOption] = useState(value);
|
||||
@@ -27,6 +27,7 @@ const EmployeeSearchSelect = (
|
||||
optionFilterProp="search"
|
||||
onSelect={onSelect}
|
||||
onBlur={onBlur}
|
||||
{...restProps}
|
||||
>
|
||||
{options
|
||||
? options.map((o) => (
|
||||
|
||||
Reference in New Issue
Block a user