From 1f2f609daa17d77f9d3829a4784ce8a272a8b81f Mon Sep 17 00:00:00 2001 From: Chris Lawton <chris.lawton@torchbox.com> Date: Tue, 29 Jan 2019 14:30:26 +0000 Subject: [PATCH] li shouldn't be decedents of li --- opentech/static_src/src/app/src/components/ListingHeading.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opentech/static_src/src/app/src/components/ListingHeading.js b/opentech/static_src/src/app/src/components/ListingHeading.js index ab534aff4..b8b05c897 100644 --- a/opentech/static_src/src/app/src/components/ListingHeading.js +++ b/opentech/static_src/src/app/src/components/ListingHeading.js @@ -5,10 +5,10 @@ export default class ListingHeading extends React.Component { render() { const parsedTitle = this.props.title.split(' ').join('-').toLowerCase(); return ( - <li className="listing__item listing__item--heading" id={parsedTitle}> + <div className="listing__item listing__item--heading" id={parsedTitle}> <h5 className="listing__title">{this.props.title}</h5> <span className="listing__count">{this.props.count}</span> - </li> + </div> ); } } -- GitLab