Skip to content

Commit

Permalink
div code filter added
Browse files Browse the repository at this point in the history
  • Loading branch information
Hari-egov committed Sep 11, 2024
1 parent 3f60a72 commit fa1b329
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ export const UICustomizations = {
}
});
result.sort((a, b) => {
const nameA = (a.name || "").toLowerCase().trim();
const nameB = (b?.name || "").toLowerCase().trim();
const nameA = (a.divisionName || "").toLowerCase().trim();
const nameB = (b?.divisionName || "").toLowerCase().trim();
return nameA.localeCompare(nameB);
});
return result;
Expand Down

0 comments on commit fa1b329

Please sign in to comment.