This is an automated email from the ASF dual-hosted git repository. leezng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push: new 24b68d076 [INLONG-6980][Dashboard] inlong group detail optimization (#6981) 24b68d076 is described below commit 24b68d076b17467db7748ed630c35b9085cbe793 Author: Lizhen <88174078+bluew...@users.noreply.github.com> AuthorDate: Tue Dec 20 17:28:19 2022 +0800 [INLONG-6980][Dashboard] inlong group detail optimization (#6981) --- inlong-dashboard/src/locales/cn.json | 3 +-- inlong-dashboard/src/locales/en.json | 3 +-- inlong-dashboard/src/pages/GroupDetail/index.tsx | 4 +--- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/inlong-dashboard/src/locales/cn.json b/inlong-dashboard/src/locales/cn.json index 50a542205..aca18ba74 100644 --- a/inlong-dashboard/src/locales/cn.json +++ b/inlong-dashboard/src/locales/cn.json @@ -361,7 +361,7 @@ "meta.Stream.FieldName": "字段名", "meta.Stream.FieldNameRule": "以英文字母开头,只能包含英文字母、数字、下划线", "meta.Stream.DataType": "数据格式", - "meta.Stream.DataTypeHelp": "CSV:消息体为原生 CSV 的 InLong 消息类型;Raw-CSV:原生 CSV,消息按特定分隔符分隔", + "meta.Stream.DataTypeHelp": "CSV:消息体为原生 CSV 的 InLong 消息类型", "meta.Stream.FieldType": "字段类型", "meta.Stream.FieldComment": "字段描述", "meta.Stream.DataEncoding": "数据编码", @@ -491,7 +491,6 @@ "pages.GroupDetail.Sink.SaveAndRefresh": "保存并刷新配置", "pages.GroupDetail.Stream.StreamConfigTitle": "数据流配置", "pages.GroupDetail.Stream.CreateDataStream": "新建数据流", - "pages.GroupDetail.PageTitle": "详情", "pages.GroupDetail.Info": "数据流组", "pages.GroupDetail.Streams": "数据流", "pages.GroupDetail.Sources": "数据源", diff --git a/inlong-dashboard/src/locales/en.json b/inlong-dashboard/src/locales/en.json index f31dcfd86..0bd7ec404 100644 --- a/inlong-dashboard/src/locales/en.json +++ b/inlong-dashboard/src/locales/en.json @@ -361,7 +361,7 @@ "meta.Stream.FieldName": "Field name", "meta.Stream.FieldNameRule": "At the beginning of English letters, only English letters, numbers, and underscores", "meta.Stream.DataType": "DataType", - "meta.Stream.DataTypeHelp": "CSV: InLong message type whose message body is raw CSV; Raw-CSV: messages are separated by a specific separator", + "meta.Stream.DataTypeHelp": "CSV: InLong message type whose message body is raw CSV", "meta.Stream.FieldType": "FieldType", "meta.Stream.FieldComment": "Field comment", "meta.Stream.DataEncoding": "Data encoding", @@ -488,7 +488,6 @@ "pages.GroupDetail.Sink.SaveAndRefresh": "Save and submit the process", "pages.GroupDetail.Stream.StreamConfigTitle": "Data stream configuration", "pages.GroupDetail.Stream.CreateDataStream": "Create", - "pages.GroupDetail.PageTitle": "Detail", "pages.GroupDetail.Info": "Group Info", "pages.GroupDetail.Streams": "Streams", "pages.GroupDetail.Sources": "Sources", diff --git a/inlong-dashboard/src/pages/GroupDetail/index.tsx b/inlong-dashboard/src/pages/GroupDetail/index.tsx index a855963c8..326c8d2cc 100644 --- a/inlong-dashboard/src/pages/GroupDetail/index.tsx +++ b/inlong-dashboard/src/pages/GroupDetail/index.tsx @@ -162,9 +162,7 @@ const Comp: React.FC = () => { <PageContainer breadcrumb={[ { - name: isCreate - ? t('pages.GroupDetail.Info.Create') - : `${t('pages.GroupDetail.PageTitle')}${id}`, + name: isCreate ? t('pages.GroupDetail.Info.Create') : `${id}`, }, ]} useDefaultContainer={!isCreate}