Skip to content

Commit

Permalink
Reordered items in read me
Browse files Browse the repository at this point in the history
  • Loading branch information
bilta-keyvalue committed Dec 22, 2023
1 parent 61d5428 commit 4d51e4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,11 @@ The following code displays the icons that can be customized
<MultiSelection
options={optionsArray}
icons={{
Search?: url || JSX.Element,
Arrow?: url || JSX.Element,
ChipClose?: url || JSX.Element,
Checked?: url || JSX.Element,
Arrow?: url || JSX.Element,
ClearSearch?: url || JSX.Element
ClearSearch?: url || JSX.Element,
Search?: url || JSX.Element
}}
/>
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib/multi-select/searchComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SearchComponent = (
onSearch(searchTerm);
}, [searchTerm]);

const onCloseButtonClick = (): void =>{
const onCloseButtonClick = (): void => {
setSearchTerm("");
if(onCloseClick) onCloseClick();
}
Expand Down

0 comments on commit 4d51e4b

Please sign in to comment.