This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.0.0-beta-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit eedf2ba001a6e44c876570598797aeb8b37a1dee Author: songjianet <[email protected]> AuthorDate: Tue May 24 18:33:00 2022 +0800 [Fix][UI] Fix issue with treemap depth in workflow relationships. (#10229) * [Fix][UI] Fix issue with treemap depth in workflow relationships. * [Fix][UI] Fix issue with treemap depth in workflow relationships. (cherry picked from commit abecec3c28402b9781ae05831228af0f2bfb4a9f) --- dolphinscheduler-ui/src/components/chart/modules/Tree.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/components/chart/modules/Tree.tsx b/dolphinscheduler-ui/src/components/chart/modules/Tree.tsx index 10948eb201..f94918c4b0 100644 --- a/dolphinscheduler-ui/src/components/chart/modules/Tree.tsx +++ b/dolphinscheduler-ui/src/components/chart/modules/Tree.tsx @@ -62,7 +62,7 @@ const TreeChart = defineComponent({ symbolSize: 18, edgeShape: 'polyline', edgeForkPosition: '63%', - initialTreeDepth: 3, + initialTreeDepth: 'auto', lineStyle: { width: 3 },
