Skip to content

Commit fcd8824

Browse files
committed
FE: Fix config param source nullability (#3661)
(cherry picked from commit c148f11)
1 parent b991fb3 commit fcd8824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kafka-ui-react-app/src/components/Topics/shared/Form/CustomParams/CustomParamField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const CustomParamField: React.FC<Props> = ({
4949
label: option,
5050
disabled:
5151
(config &&
52-
config[option].source !== ConfigSource.DYNAMIC_TOPIC_CONFIG) ||
52+
config[option]?.source !== ConfigSource.DYNAMIC_TOPIC_CONFIG) ||
5353
existingFields.includes(option),
5454
}));
5555

0 commit comments

Comments
 (0)