From ae8deb32202ec4b6a127e75ad5e0497e1c44e1e1 Mon Sep 17 00:00:00 2001 From: Conrad S Date: Thu, 16 Feb 2017 11:46:22 -0500 Subject: [PATCH] Add bin to prop types and row --- src/components/BuildingListTable/index.js | 2 ++ src/containers/Building/propTypes.js | 1 + 2 files changed, 3 insertions(+) diff --git a/src/components/BuildingListTable/index.js b/src/components/BuildingListTable/index.js index c5cedb2c..dd67a3c6 100644 --- a/src/components/BuildingListTable/index.js +++ b/src/components/BuildingListTable/index.js @@ -30,6 +30,7 @@ export default function BuildingListTable({ buildings, error }) { > {building.address} {building.bbl} + {building.bin_id} {building.borough} {building.building_id} {building.lot_id} @@ -56,6 +57,7 @@ BuildingListTable.propTypes = { buildings: PropTypes.arrayOf(PropTypes.shape({ address: PropTypes.state, bbl: PropTypes.number, + bin_id: PropTypes.number, building_id: PropTypes.number, lot_id: PropTypes.number, borough: PropTypes.string, diff --git a/src/containers/Building/propTypes.js b/src/containers/Building/propTypes.js index 6cdf609e..98e5b02b 100644 --- a/src/containers/Building/propTypes.js +++ b/src/containers/Building/propTypes.js @@ -4,6 +4,7 @@ export default PropTypes.shape({ overview: PropTypes.shape({ address: PropTypes.string, bbl: PropTypes.number, + bin_id: PropTypes.number, building_id: PropTypes.number, lot_id: PropTypes.number, borough: PropTypes.string, -- GitLab