Skip to content

Commit a9d9370

Browse files
Merge pull request #576 from CodeForPhilly/paulhchoi/add-zoning-to-detail
add zoning to property detail
2 parents b60f1ba + 690a1c9 commit a9d9370

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/components/SinglePropertyDetail.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ const SinglePropertyDetail = ({
5858
owner_1,
5959
owner_2,
6060
rco_names,
61+
zoning_base_district,
6162
priority_level,
6263
total_due,
6364
tree_canopy_gap,
@@ -217,6 +218,10 @@ const SinglePropertyDetail = ({
217218
<Th>RCO</Th>
218219
<td className="table-cell">{rco_names.split("|").join(", ")}</td>
219220
</tr>
221+
<tr>
222+
<Th>Zoning</Th>
223+
<td className="table-cell">{zoning_base_district}</td>
224+
</tr>
220225
<tr>
221226
<Th>Council District</Th>
222227
<td className="table-cell">{council_district}</td>

0 commit comments

Comments
 (0)