Skip to content

Commit

Permalink
Merge pull request #1153 from NYCPlanning/develop
Browse files Browse the repository at this point in the history
Merging fix for c3a zoning district link up to master for prod release
  • Loading branch information
TylerMatteo authored Oct 17, 2023
2 parents c5b812f + 07030aa commit 977fb40
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/models/map-features/lot.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const getPrimaryZone = (zonedist = '') => {
let primary = zonedist.match(/\w\d*/)[0].toLowerCase();
// special handling for c1 and c2
if ((primary === 'c1') || (primary === 'c2')) primary = 'c1-c2';
// special handling for c3 and c3a
if ((primary === 'c3') || (primary === 'c3a')) primary = 'c3-c3a';
return primary;
};

Expand Down

0 comments on commit 977fb40

Please sign in to comment.