Skip to content

Commit

Permalink
Don't unset organized if tagger flag is false (#4213)
Browse files Browse the repository at this point in the history
  • Loading branch information
WithoutPants authored Oct 16, 2023
1 parent 789de2d commit 5e0f27b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/v2.5/src/components/Tagger/context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
},
});
Expand Down

0 comments on commit 5e0f27b

Please sign in to comment.