Skip to content

Commit

Permalink
dont double trigger visiblity when clicking on advanced checkbox (#8035)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Büßemeyer <[email protected]>
  • Loading branch information
MichaelBuessemeyer and MichaelBuessemeyer authored Aug 28, 2024
1 parent 6dad7ca commit 1a545bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/javascripts/oxalis/view/jobs/train_ai_model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export function CollapsibleWorkflowYamlEditor({
<Collapse
style={{ marginBottom: 8 }}
onChange={() => setActive(!isActive)}
expandIcon={() => <Checkbox checked={isActive} onChange={() => setActive(!isActive)} />}
expandIcon={() => <Checkbox checked={isActive} />}
items={[
{
key: "advanced",
Expand Down

0 comments on commit 1a545bf

Please sign in to comment.