Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 50f6043

Browse files
committed
fix: format
1 parent 09f9db9 commit 50f6043

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/modules/workspaces/DynamicParameter/DynamicParameter.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,9 @@ const ParameterField: FC<ParameterFieldProps> = ({
406406
: option.value.value;
407407
return (
408408
<SelectItem
409-
key={option.value.value || `${EMPTY_VALUE_PLACEHOLDER}:${index}`}
409+
key={
410+
option.value.value || `${EMPTY_VALUE_PLACEHOLDER}:${index}`
411+
}
410412
value={optionValue}
411413
>
412414
<OptionDisplay option={option} />

0 commit comments

Comments
 (0)