Fixed minor typo bug for scene list thumbnails (#275)

This commit is contained in:
bnkai 2019-12-19 00:32:24 +02:00 committed by Leopere
parent ea995dc374
commit e58088b057
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export const SceneListTable: FunctionComponent<ISceneListTableProps> = (props: I
return ( return (
<Link <Link
className="scene-list-thumbnail" className="scene-list-thumbnail"
to={`/performers/${scene.id}`} to={`/scenes/${scene.id}`}
style={style}/> style={style}/>
) )
} }