This is an automated email from the ASF dual-hosted git repository.
songjian 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 843ab3f [Fix][UI Next] Fix styling issues under Project.
843ab3f is described below
commit 843ab3fbb2cc0be02ec172da1ce78ad1e16bfd51
Author: labbomb <[email protected]>
AuthorDate: Tue Feb 22 16:54:23 2022 +0800
[Fix][UI Next] Fix styling issues under Project.
---
.../src/views/projects/task/definition/use-table.ts | 4 +++-
.../src/views/projects/workflow/components/dag/dag.module.scss | 1 +
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git
a/dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts
b/dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts
index 9274983..b3a3a2c 100644
--- a/dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts
+++ b/dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts
@@ -51,6 +51,7 @@ export function useTable(onEdit: Function) {
{
title: t('project.task.task_name'),
key: 'taskName',
+ width: 400,
render: (row: IRecord) =>
h(
'a',
@@ -69,7 +70,8 @@ export function useTable(onEdit: Function) {
},
{
title: t('project.task.workflow_name'),
- key: 'processDefinitionName'
+ key: 'processDefinitionName',
+ width: 400
},
{
title: t('project.task.workflow_state'),
diff --git
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss
index d338520..2720f11 100644
---
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss
+++
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss
@@ -70,6 +70,7 @@ $bgLight: #ffffff;
width: 190px;
height: 100%;
margin-right: 20px;
+ overflow-y: scroll;
}
.workflow-name {