1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-31 13:47:02 +02:00

fix: small description for toggles

This commit is contained in:
Ivar Conradi Østhus 2021-04-16 12:59:36 +02:00
parent b3436b5ae6
commit 3cca2513fb
2 changed files with 7 additions and 3 deletions

View File

@ -64,7 +64,7 @@ const FeatureToggleListItem = ({
<TimeAgo date={createdAt} live={false} /> <TimeAgo date={createdAt} live={false} />
</small> </small>
<div> <div>
<span className={commonStyles.truncate}>{description}</span> <span className={commonStyles.truncate}><small>{description}</small></span>
</div> </div>
</Link> </Link>
</span> </span>

View File

@ -84,7 +84,9 @@ exports[`renders correctly with one feature 1`] = `
<span <span
className="truncate" className="truncate"
> >
another's description <small>
another's description
</small>
</span> </span>
</div> </div>
</a> </a>
@ -180,7 +182,9 @@ exports[`renders correctly with one feature without permission 1`] = `
<span <span
className="truncate" className="truncate"
> >
another's description <small>
another's description
</small>
</span> </span>
</div> </div>
</a> </a>