Skip to content

Commit

Permalink
fix: concat bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Jul 12, 2024
1 parent 2e1d4cb commit 943edd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/location.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class LocationController {
);
}
if (mcSubSubOptions && mcSubSubOptions.length > 0) {
items.concat(
items = items.concat(
_.orderBy(
mcSubSubOptions.map((mc: any) => ({
name: _.get(
Expand Down

0 comments on commit 943edd4

Please sign in to comment.