mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
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:
@@ -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 }) => {
|
||||
|
||||
Reference in New Issue
Block a user