diff --git a/client/src/LatestList.js b/client/src/LatestList.js index afe231a..c6ef828 100644 --- a/client/src/LatestList.js +++ b/client/src/LatestList.js @@ -5,9 +5,10 @@ export default function(props) { const latest = props.latest || []; const latestElements = latest.map(item => { const created = new Date(item.created); + const hrefId = `#item-${item.id}`; return (