From cf21451318cfe6d390c4e655f6c7e525d55c58b3 Mon Sep 17 00:00:00 2001 From: bayured <155395888+bayured@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:01:09 +0000 Subject: [PATCH] Fix validate error --- ui/v2.5/src/components/Tagger/PerformerModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/v2.5/src/components/Tagger/PerformerModal.tsx b/ui/v2.5/src/components/Tagger/PerformerModal.tsx index feb41d59d20..79f80708aff 100755 --- a/ui/v2.5/src/components/Tagger/PerformerModal.tsx +++ b/ui/v2.5/src/components/Tagger/PerformerModal.tsx @@ -283,8 +283,8 @@ const PerformerModal: React.FC = ({ performerData[k] = undefined; } // #5565 - special case aliases as the names differ - if (k == "alias_list" && excluded["aliases"]) { - performerData["alias_list"] = undefined; + if (k == "alias_list" && excluded.aliases) { + performerData.alias_list = undefined; } });