Skip to content

Commit

Permalink
Update PerformerModal.tsx to fix aliases exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
bayured authored Dec 20, 2024
1 parent 0621d87 commit d032819
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 d032819

Please sign in to comment.