From d21412c19a5dea2158be9f36db834544763fcaef Mon Sep 17 00:00:00 2001 From: TangShan_DD Date: Mon, 11 Nov 2024 14:13:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20kafka=E9=BB=98=E8=AE=A4=E5=80=BC?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/task/graph/software/components/KafkaItem.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/task/graph/software/components/KafkaItem.vue b/src/views/task/graph/software/components/KafkaItem.vue index 6991b27..46edbb9 100644 --- a/src/views/task/graph/software/components/KafkaItem.vue +++ b/src/views/task/graph/software/components/KafkaItem.vue @@ -81,8 +81,8 @@ export default { }, topics: [ { - replication: 1, - partitions: 1, + replication: 2, + partitions: 10, topic_name: '' } ] @@ -116,8 +116,8 @@ export default { // 新增topic addTopic(data) { data.push({ - replication: 1, - partitions: 1, + replication: 2, + partitions: 10, topic_name: '' }) },