This is an automated email from the ASF dual-hosted git repository. healchow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/inlong.git
commit 22b159a452f54b0bd5a5d3e7b38a7c821f166e11 Author: ganfengtan <[email protected]> AuthorDate: Sun Jul 3 14:43:47 2022 +0800 [INLONG-4845][Dashboard] Update the Tube configuration form (#4846) --- inlong-dashboard/src/pages/Clusters/config/TubeMQ.tsx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/inlong-dashboard/src/pages/Clusters/config/TubeMQ.tsx b/inlong-dashboard/src/pages/Clusters/config/TubeMQ.tsx index 103d5adda..81ff8e31e 100644 --- a/inlong-dashboard/src/pages/Clusters/config/TubeMQ.tsx +++ b/inlong-dashboard/src/pages/Clusters/config/TubeMQ.tsx @@ -22,13 +22,28 @@ import type { ClsConfigItemType } from './types'; export const TubeMQ: ClsConfigItemType[] = [ { type: 'input', - label: 'MasterUrl', + label: 'MasterWebUrl', + name: 'masterWebUrl', + rules: [{ required: true }], + props: { + placeholder: 'http://127.0.0.1:8080', + }, + }, + { + type: 'input', + label: 'MasterRpcUrl', name: 'url', rules: [{ required: true }], + props: { + placeholder: '127.0.0.1:8715,127.0.1.1:8715', + }, }, { type: 'input', label: 'Token', name: 'token', + props: { + placeholder: 'Tube cluster token example: abc', + }, }, ];
