You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by li...@apache.org on 2022/04/02 09:01:12 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear. (#9333)

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

liudongkai 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 d7a4dc1  [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear. (#9333)
d7a4dc1 is described below

commit d7a4dc1dbc95650f80488890cc049e1137eb264b
Author: songjianet <17...@qq.com>
AuthorDate: Sat Apr 2 17:01:07 2022 +0800

    [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear. (#9333)
    
    * [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear.
    
    * [Fix][UI Next][V1.0.0-Alpha] Fix the two hover prompts appear.
---
 .../views/projects/workflow/definition/timing/use-table.ts   | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts
index 4a253c1..97d7932 100644
--- a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts
+++ b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/timing/use-table.ts
@@ -18,7 +18,7 @@
 import { h, ref, reactive } from 'vue'
 import { useI18n } from 'vue-i18n'
 import { useRouter } from 'vue-router'
-import { NSpace, NTooltip, NButton, NPopconfirm, NEllipsis } from 'naive-ui'
+import { NSpace, NTooltip, NButton, NPopconfirm } from 'naive-ui'
 import {
   deleteScheduleById,
   offline,
@@ -84,15 +84,7 @@ export function useTable() {
       {
         title: t('project.workflow.workflow_name'),
         key: 'processDefinitionName',
-        ...COLUMN_WIDTH_CONFIG['name'],
-        render: (row: any) =>
-          h(
-            NEllipsis,
-            { style: 'max-width: 200px' },
-            {
-              default: () => row.processDefinitionName
-            }
-          )
+        ...COLUMN_WIDTH_CONFIG['name']
       },
       {
         title: t('project.workflow.start_time'),