1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Fix lint error

This commit is contained in:
ivaosthu 2017-01-02 22:33:15 +01:00
parent df8b001991
commit b93b27993e

View File

@ -50,7 +50,8 @@ const Feature = ({
</span> </span>
<span className="mdl-list__item-primary-content"> <span className="mdl-list__item-primary-content">
<Link to={`/features/view/${name}`} className={style.link} style={{ display: 'inline-block', width: '100%' }}> <Link to={`/features/view/${name}`} className={style.link} style={{ display: 'inline-block', width: '100%' }}>
{shorten(name, 75)} <small className={[style.hideLt960, 'mdl-list__item-sub-title'].join(' ')}>{shorten(description, 75) || ''}</small> {shorten(name, 75)} <small className={[style.hideLt960, 'mdl-list__item-sub-title'].join(' ')}>
{shorten(description, 75) || ''}</small>
</Link> </Link>
</span> </span>