Skip to content

Commit

Permalink
Merge pull request #3755 from brandta-1/develop
Browse files Browse the repository at this point in the history
[Issue WV-142] updated StateDropDown to list states alphabetically by full name
  • Loading branch information
DaleMcGrew authored Oct 17, 2023
2 parents 5853ac7 + 14a6f40 commit 344a2c1
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 344a2c1

Please sign in to comment.