Add linkTypes to performer popover (#5195)

This commit is contained in:
dogwithakeyboard
2024-09-05 03:55:19 +01:00
committed by GitHub
parent 283f76240f
commit 879c20efc7
5 changed files with 27 additions and 5 deletions

View File

@@ -165,7 +165,12 @@ const SceneCardPopovers = PatchComponent(
function maybeRenderPerformerPopoverButton() {
if (props.scene.performers.length <= 0) return;
return <PerformerPopoverButton performers={props.scene.performers} />;
return (
<PerformerPopoverButton
performers={props.scene.performers}
linkType="scene"
/>
);
}
function maybeRenderGroupPopoverButton() {