mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix performer select not working correctly in scrape dialog (#4199)
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user