From cc418e780bc11d970ae5e12b36d049915f501c2a Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Mon, 13 Jul 2015 18:42:43 -0700 Subject: [PATCH] use title field --- common/app/routes/Hikes/components/Map.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/app/routes/Hikes/components/Map.jsx b/common/app/routes/Hikes/components/Map.jsx index 4c3ec01e8d..83e51d1fa4 100644 --- a/common/app/routes/Hikes/components/Map.jsx +++ b/common/app/routes/Hikes/components/Map.jsx @@ -21,11 +21,11 @@ export default contain( hikes } = this.props; - const vidElements = hikes.map(({ name, id }) => { + const vidElements = hikes.map(({ title, id }) => { return ( -

{ name }

+

{ title }

);