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

Merge branch 'dillon/case_insensitive_search' into 'alpha'

Change Decay search to be case insensitive

See merge request !71
parents 8b3bb174 4b0d000c
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 #7307730 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