Skip to content

Commit

Permalink
fix observatoin #1 FOIMOD-3300
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-aot committed Jul 22, 2024
1 parent e9ca88b commit 847eccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/FOI/Home/MCFPersonal.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const MCFPersonal = ({
_sectionArray.map((section) => {
if(_keyword && section.name.toLowerCase().includes(_keyword.toLowerCase())) {
newSectionArray.push(section);
} else if(section.divisionid === _selectedSectionValue) {
} else if(section.name === _selectedSectionValue) {
newSectionArray.unshift(section);
}
});
Expand Down

0 comments on commit 847eccb

Please sign in to comment.