mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 01:44:52 +01:00
Merges scene count and scene link into one.
This commit is contained in:
parent
dd8a62bd66
commit
1e258bc445
1 changed files with 3 additions and 2 deletions
|
|
@ -44,8 +44,9 @@ 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} scenes.</span>
|
||||
<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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue