adds scene link to all performer cards

This commit is contained in:
ueaslsef 2019-07-11 17:56:41 +00:00 committed by GitHub
parent 2cfaeb7591
commit 329450df59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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