未验证 提交 99f6ab38 编写于 作者: S songjianet 提交者: GitHub

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

上级 2b519f31
......@@ -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: {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册