Skip to content
Snippets Groups Projects
Commit 4b0d000c authored by Dillon Scott Fitzgerald's avatar Dillon Scott Fitzgerald
Browse files

Change Decay search to be case insensitive.

parent 8b3bb174
No related branches found
No related tags found
2 merge requests!76Update master with changes to alpha,!71Change Decay search to be case insensitive
Pipeline #7307703 passed
......@@ -46,7 +46,7 @@ class SelectParticle extends React.Component {
<Select
options={options}
isLoading={!loaded}
filterOption={(candidate, input) => candidate.value.startsWith(input)}
filterOption={(candidate, input) => candidate.value.toLowerCase().startsWith(input.toLowerCase())}
{...remainingProps}
/>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment