diff --git a/kafka-ui-react-app/src/components/Topics/Topic/SendMessage/SendMessage.tsx b/kafka-ui-react-app/src/components/Topics/Topic/SendMessage/SendMessage.tsx index c8898c7ad2..11fa6c08e3 100644 --- a/kafka-ui-react-app/src/components/Topics/Topic/SendMessage/SendMessage.tsx +++ b/kafka-ui-react-app/src/components/Topics/Topic/SendMessage/SendMessage.tsx @@ -142,7 +142,7 @@ const SendMessage: React.FC = () => { key: !key ? null : key, content: !content ? null : content, headers, - partition, + partition: !partition ? 0 : partition, }, }); dispatch(fetchTopicDetails({ clusterName, topicName }));