This is an automated email from the ASF dual-hosted git repository. caishunfeng pushed a commit to branch 3.0.0-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 9164ec8bf19047bcce0db1103df55c33cb46a34f Author: Devosend <[email protected]> AuthorDate: Fri Jul 22 11:52:25 2022 +0800 fix view variable display bug (#11100) --- .../src/views/projects/workflow/components/dag/dag-toolbar.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-toolbar.tsx b/dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-toolbar.tsx index 72e5f7f1ed..519fa5bc01 100644 --- a/dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-toolbar.tsx +++ b/dolphinscheduler-ui/src/views/projects/workflow/components/dag/dag-toolbar.tsx @@ -227,7 +227,12 @@ export default defineComponent({ <NTooltip v-slots={{ trigger: () => ( - <NPopover placement='bottom' trigger='click'> + <NPopover + placement='bottom' + trigger='click' + scrollable + style={{ maxWidth: '50vw', maxHeight: '70vh' }} + > {{ trigger: () => ( <NButton
