Browse Source

[Fix][UI Next] Fix styling issues under Project.

3.0.0/version-upgrade
labbomb 3 years ago committed by GitHub
parent
commit
843ab3fbb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui-next/src/views/projects/task/definition/use-table.ts
  2. 1
      dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag.module.scss

4
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'),

1
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 {

Loading…
Cancel
Save