This is an automated email from the ASF dual-hosted git repository.
kerwin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 99f6ab3 [Feature][Workflow relationship] Format name. (#7143)
99f6ab3 is described below
commit 99f6ab38478d44e5e2ce2278d5872a2e4e092a3c
Author: songjianet <[email protected]>
AuthorDate: Fri Dec 3 14:43:45 2021 +0800
[Feature][Workflow relationship] Format name. (#7143)
---
.../home/pages/projects/pages/kinship/_source/graphGridOption.js | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js
index 907a54e..4d9e050 100644
---
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js
+++
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js
@@ -31,6 +31,12 @@ const getCategory = (categoryDic, { workFlowPublishStatus,
schedulePublishStatus
}
}
+const formatName = (str) => {
+ if (typeof str !== 'string') return ''
+
+ return str.slice(0, 6) + (str.length > 6 ? '\n...' : '')
+}
+
const publishStatusFormat = (status) => {
return status === 0 || status === '0' ? i18n.$t('offline') : status === 1 ||
status === '1' ? i18n.$t('online') : '-'
}
@@ -116,8 +122,7 @@ export default function (locations, links,
sourceWorkFlowCode, isShowLabel) {
position: 'inside',
formatter: (params) => {
if (!params.data.name) return ''
- const str = params.data.name.split('_').map(item =>
`{a|${item}\n}`).join('')
- return str
+ return formatName(params.data.name)
},
color: '#222222',
textStyle: {