This commit is contained in:
Pierre Jacquier
2025-06-16 14:25:22 -04:00
parent 7e578f6d57
commit 8138f74cbd
2 changed files with 5 additions and 1 deletions

View File

@ -207,6 +207,11 @@ function CommandBarHeader({ children }: React.PropsWithChildren<object>) {
</Tooltip>
</>
)}
{arg.inputType === 'options' &&
typeof argValue === 'boolean' &&
argValue && (
<CustomIcon name="checkmark" className="w-4 h-4" />
)}
</button>
)
})}

View File

@ -407,7 +407,6 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
},
bidirectionalLength: {
inputType: 'kcl',
defaultValue: KCL_DEFAULT_LENGTH,
skip: true,
required: false,
},