mirror of
https://github.com/stashapp/stash.git
synced 2026-05-08 20:58:48 +02:00
Fix performer select not working correctly in scrape dialog (#4199)
This commit is contained in:
parent
1f0f5eb49c
commit
06c9d6f554
1 changed files with 2 additions and 1 deletions
|
|
@ -151,7 +151,8 @@ export const ScrapedPerformersRow: React.FC<
|
|||
isDisabled={!isNew}
|
||||
onSelect={(items) => {
|
||||
if (onChangeFn) {
|
||||
onChangeFn(items);
|
||||
// map the id back to stored_id
|
||||
onChangeFn(items.map((p) => ({ ...p, stored_id: p.id })));
|
||||
}
|
||||
}}
|
||||
values={selectValue}
|
||||
|
|
|
|||
Loading…
Reference in a new issue