diff --git a/src/main/frontend/sections/editor/types/CreateChildNodeStep.tsx b/src/main/frontend/sections/editor/types/CreateChildNodeStep.tsx
index e3ba1b0..ccddfea 100644
--- a/src/main/frontend/sections/editor/types/CreateChildNodeStep.tsx
+++ b/src/main/frontend/sections/editor/types/CreateChildNodeStep.tsx
@@ -41,6 +41,7 @@ export const CreateChildNodeStep = forwardRef
- Whether to run the descendant hops if the target node already existed (only applicable if “If the target node - exists” is set to “Ignore conflict”). + Whether to run the descendant hops if the target node already existed and no new node could be created (only + applicable if “If the target node exists” is set to “Ignore conflict”).
diff --git a/src/main/frontend/widgets/Switch.tsx b/src/main/frontend/widgets/Switch.tsx index fd40e4a..9765da1 100644 --- a/src/main/frontend/widgets/Switch.tsx +++ b/src/main/frontend/widgets/Switch.tsx @@ -7,9 +7,10 @@ export type Options = [value: string, label: string, icon?: CoralIcon][]; export const Switch: FC<{ label?: string; + disabled?: boolean; value: boolean; onChange(newValue: boolean): void; -}> = ({ label = 'Conflict Resolution', value, onChange }) => { +}> = ({ label = 'Conflict Resolution', disabled = false, value, onChange }) => { const scriptContext = useContext(ScriptContext); const switchRef = useRef