Browse Source

[Fix][UI] Fix the problem of displaying task execution icons. (#9549)

3.0.0/version-upgrade
Amy0104 3 years ago committed by GitHub
parent
commit
4d6a732ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-config.ts

14
dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-config.ts

@ -123,19 +123,17 @@ export const NODE_STATUS_MARKUP = [
{ {
tagName: 'foreignObject', tagName: 'foreignObject',
selector: 'fo', selector: 'fo',
children: [
{
tagName: 'body',
selector: 'fo-body',
ns: 'http://www.w3.org/1999/xhtml',
children: [ children: [
{ {
tagName: 'div', tagName: 'div',
selector: 'status' selector: 'fo-body',
ns: 'http://www.w3.org/1999/xhtml'
} }
] ],
style: {
width: 20,
height: 20
} }
]
} }
] ]

Loading…
Cancel
Save