From 7a9b9c63cd5bfb027da2072a1391fe4224d356c8 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Tue, 17 Oct 2023 09:38:32 +1100 Subject: [PATCH] Don't unset organized if tagger flag is false (#4213) --- ui/v2.5/src/components/Tagger/context.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/v2.5/src/components/Tagger/context.tsx b/ui/v2.5/src/components/Tagger/context.tsx index 6a72209a1f8..d8badc10bd4 100644 --- a/ui/v2.5/src/components/Tagger/context.tsx +++ b/ui/v2.5/src/components/Tagger/context.tsx @@ -463,7 +463,8 @@ export const TaggerContext: React.FC = ({ children }) => { variables: { input: { ...sceneCreateInput, - organized: config?.markSceneAsOrganizedOnSave, + // only set organized if it is enabled in the config + organized: config?.markSceneAsOrganizedOnSave || undefined, }, }, });