mirror of
https://github.com/stashapp/stash.git
synced 2026-01-10 18:00:27 +01:00
Update PerformerModal.tsx to fix aliases exclusions (#5566)
This commit is contained in:
parent
726296bb54
commit
44d764d832
1 changed files with 4 additions and 0 deletions
|
|
@ -282,6 +282,10 @@ const PerformerModal: React.FC<IPerformerModalProps> = ({
|
|||
if (excluded[k] || !performerData[k]) {
|
||||
performerData[k] = undefined;
|
||||
}
|
||||
// #5565 - special case aliases as the names differ
|
||||
if (k == "alias_list" && excluded.aliases) {
|
||||
performerData.alias_list = undefined;
|
||||
}
|
||||
});
|
||||
|
||||
onSave(performerData);
|
||||
|
|
|
|||
Loading…
Reference in a new issue