Skip to content

Commit

Permalink
Update PerformerModal.tsx to fix aliases exclusions (#5566)
Browse files Browse the repository at this point in the history
  • Loading branch information
bayured authored Jan 30, 2025
1 parent 726296b commit 44d764d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui/v2.5/src/components/Tagger/PerformerModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 44d764d

Please sign in to comment.