This is an automated email from the ASF dual-hosted git repository.

kirs 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 da35c17  [Feature][Workflow relationship] Increase the multilingual 
judgment of the state. (#6954)
da35c17 is described below

commit da35c17cc07ea7fc2895eda4baf4e84b0c67b2fe
Author: songjianet <[email protected]>
AuthorDate: Mon Nov 22 13:47:14 2021 +0800

    [Feature][Workflow relationship] Increase the multilingual judgment of the 
state. (#6954)
---
 .../home/pages/projects/pages/kinship/_source/graphGridOption.js  | 8 ++++++--
 1 file changed, 6 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 4bbcc3b..a63ddfb 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
@@ -30,6 +30,10 @@ const getCategory = (categoryDic, { workFlowPublishStatus, 
schedulePublishStatus
   }
 }
 
+const publishStatusFormat = (status) => {
+  return status === 0 || status === '0' ? i18n.$t('offline') : status === 1 || 
status === '1' ? i18n.$t('online') : '-'
+}
+
 export default function (locations, links, sourceWorkFlowCode, isShowLabel) {
   const categoryDic = {
     active: { color: '#2D8DF0', category: i18n.$t('KinshipStateActive') },
@@ -71,8 +75,8 @@ export default function (locations, links, 
sourceWorkFlowCode, isShowLabel) {
           ${i18n.$t('scheduleStartTime')}:${scheduleStartTime}<br/>
           ${i18n.$t('scheduleEndTime')}:${scheduleEndTime}<br/>
           ${i18n.$t('crontabExpression')}:${crontab}<br/>
-          ${i18n.$t('workflowPublishStatus')}:${workFlowPublishStatus}<br/>
-          ${i18n.$t('schedulePublishStatus')}:${schedulePublishStatus}<br/>
+          
${i18n.$t('workflowPublishStatus')}:${publishStatusFormat(workFlowPublishStatus)}<br/>
+          
${i18n.$t('schedulePublishStatus')}:${publishStatusFormat(schedulePublishStatus)}<br/>
         `
       },
       color: '#2D303A',

Reply via email to