Skip to content

Commit

Permalink
[Issue WV-142] updated StateDropDown to list states alphabetically by…
Browse files Browse the repository at this point in the history
… full name
  • Loading branch information
brandta-1 committed Oct 16, 2023
1 parent 05d55ec commit 14a6f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/Filter/StateDropDownCore.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class StateDropDownCore extends Component {
} = this.props;

let stateCodeTemp;
const stateNameList = Object.values(stateCodeMap);
const stateNameList = Object.values(stateCodeMap).sort();

return (
<FormControl variant="outlined" className={classes.formControl}>
Expand Down

0 comments on commit 14a6f40

Please sign in to comment.