We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c92e720 commit 4c96046Copy full SHA for 4c96046
src/client/components/DynamicParameter.tsx
@@ -392,7 +392,7 @@ const ParameterField: FC<ParameterFieldProps> = ({
392
</SelectTrigger>
393
<SelectContent>
394
{parameter.options.map((option) => (
395
- <SelectItem key={option.value.value} value={option.value.value}>
+ <SelectItem key={option.value.value} value={option.value.value || "??"}>
396
<OptionDisplay option={option} />
397
</SelectItem>
398
))}
@@ -499,7 +499,7 @@ const ParameterField: FC<ParameterFieldProps> = ({
499
>
500
<RadioGroupItem
501
id={`${id}-${option.value.value}`}
502
- value={option.value.value}
+ value={option.value.value || "??"}
503
/>
504
<Label
505
htmlFor={`${id}-${option.value.value}`}
0 commit comments