Browse Source

[Feature][Workflow relationship] Format name. (#7149)

2.0.7-release
songjianet 3 years ago committed by GitHub
parent
commit
548f43dc26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js

9
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/_source/graphGridOption.js

@ -30,6 +30,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: {

Loading…
Cancel
Save