Browse Source

[Fix][UI] fix bug where icons are displayed in one line. (#11320)

3.1.0-release
Devosend 2 years ago committed by GitHub
parent
commit
0fdec2cd5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      dolphinscheduler-ui/src/views/projects/workflow/instance/index.module.scss
  2. 3
      dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts

8
dolphinscheduler-ui/src/views/projects/workflow/instance/index.module.scss

@ -72,14 +72,6 @@
margin-top: 20px;
}
.operation {
> div {
> div {
margin-right: 5px !important;
}
}
}
.startup {
align-items: center;
> div:first-child {

3
dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts

@ -175,8 +175,7 @@ export function useTable() {
{
title: t('project.workflow.operation'),
key: 'operation',
...COLUMN_WIDTH_CONFIG['operation'](6),
className: styles.operation,
...COLUMN_WIDTH_CONFIG['operation'](7),
render: (_row: IWorkflowInstance, index: number) =>
h(TableAction, {
row: _row,

Loading…
Cancel
Save