From 2185ed65f0275df4c409b0030c29f7193638494d Mon Sep 17 00:00:00 2001 From: Ryan Blair Date: Tue, 6 Jul 2021 19:21:23 -0400 Subject: [PATCH] Use new version of MapPluto --- app/adapters/lot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/adapters/lot.js b/app/adapters/lot.js index 958db194d..5bf72f197 100644 --- a/app/adapters/lot.js +++ b/app/adapters/lot.js @@ -50,7 +50,7 @@ const LotColumnsSQL = [ export const cartoQueryTemplate = function(id) { return `SELECT ${LotColumnsSQL.join(',')}, st_x(st_centroid(the_geom)) as lon, st_y(st_centroid(the_geom)) as lat, - the_geom, bbl AS id FROM mappluto WHERE bbl=${id}`; + the_geom, bbl AS id FROM dcp_mappluto WHERE bbl=${id}`; }; export default CartoGeojsonFeatureAdapter.extend({