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/08/05 09:45:12 UTC

[dolphinscheduler] branch dev updated: [Fix][UI] Fix the taskPriority options not showing when hover. (#11294)

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 348edb16f9 [Fix][UI] Fix the taskPriority options not showing when hover. (#11294)
348edb16f9 is described below

commit 348edb16f9be95ef8d1c8aa6193f616a1ee6c2fe
Author: Amy0104 <am...@163.com>
AuthorDate: Fri Aug 5 17:45:07 2022 +0800

    [Fix][UI] Fix the taskPriority options not showing when hover. (#11294)
---
 .../src/views/projects/task/components/node/fields/use-task-priority.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-task-priority.ts b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-task-priority.ts
index 64db58d9dd..3f8e860b6a 100644
--- a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-task-priority.ts
+++ b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-task-priority.ts
@@ -73,7 +73,7 @@ export function useTaskPriority(): IJsonItem {
             default: () => h(option.icon)
           }
         ),
-        option.label as string
+        h('span', { style: { 'z-index': 1 } }, option.label as string)
       ]
     })
   return {