Fixes spacing in "stars in X scenes"

This commit is contained in:
ueaslsef 2019-07-24 17:22:52 +00:00 committed by GitHub
parent 15291b4205
commit 18fd72a45c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,8 +44,7 @@ export const PerformerCard: FunctionComponent<IPerformerCardProps> = (props: IPe
{props.performer.name}
</H4>
{age !== 0 ? <span className="bp3-text-muted block">{ageString}</span> : undefined}
<span className="bp3-text-muted block">Stars in {props.performer.scene_count}
<Link to={NavigationUtils.makePerformerScenesUrl(props.performer)}>scenes</Link>.
<span className="bp3-text-muted block">Stars in {props.performer.scene_count} <Link to={NavigationUtils.makePerformerScenesUrl(props.performer)}>scenes</Link>.
</span>
</div>
</Card>