Show skip true args in header in review phase

This commit is contained in:
Pierre Jacquier
2025-06-16 12:03:15 -04:00
parent 3339da96b5
commit 4f3742c826
2 changed files with 3 additions and 6 deletions

View File

@ -105,6 +105,7 @@ function CommandBarHeader({ children }: React.PropsWithChildren<object>) {
{Object.entries(nonHiddenArgs || {})
.filter(
([_, argConfig]) =>
isReviewing ||
argConfig.skip === false ||
(typeof argConfig.required === 'function'
? argConfig.required(commandBarState.context)

View File

@ -399,9 +399,7 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
symmetric: {
inputType: 'options',
skip: true,
defaultValue: false,
hidden: false,
required: true,
required: false,
options: [
{ name: 'False', value: false },
{ name: 'True', value: true },
@ -448,9 +446,7 @@ export const modelingMachineCommandConfig: StateMachineCommandSetConfig<
sectional: {
inputType: 'options',
skip: true,
defaultValue: false,
hidden: false,
required: true,
required: false,
options: [
{ name: 'False', value: false },
{ name: 'True', value: true },