Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
Penstion Tool fix for pensions ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrei committed Apr 12, 2018
1 parent f8dcdc1 commit c1e4dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/email_pension/SelectPensionFund.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SelectPensionFund extends Component {
$.getJSON(url)
.then(data => {
// $FlowIgnore
return sortBy(data, ['fund']).map(f => ({
return sortBy(data, [o => o.fund.toLowerCase()]).map(f => ({
...f,
value: f._id,
label: f.fund,
Expand Down

0 comments on commit c1e4dd5

Please sign in to comment.