Add disambiguation to performer link and performer select values (#4541)

* Add disambiguation to PerformerLink
* Add disambiguation to performer select values
This commit is contained in:
WithoutPants
2024-02-12 14:03:45 +11:00
committed by GitHub
parent a4bbdcfbae
commit 235c9c90c2
6 changed files with 23 additions and 4 deletions

View File

@@ -9,7 +9,10 @@ import { Icon } from "./Icon";
import { PerformerLink } from "./TagLink";
interface IProps {
performers: Partial<GQL.PerformerDataFragment>[];
performers: Pick<
GQL.Performer,
"id" | "name" | "image_path" | "disambiguation" | "gender"
>[];
}
export const PerformerPopoverButton: React.FC<IProps> = ({ performers }) => {