Added filtering and search to kanban board. BOD-176

This commit is contained in:
Patrick Fic
2020-08-05 15:54:44 -07:00
parent 2f11ad48c0
commit bebdfe7a93
7 changed files with 277 additions and 128 deletions

View File

@@ -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) => (