You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/08/08 01:54:04 UTC

[dolphinscheduler] branch dev updated: [Fix][UI] fix bug where icons are displayed in one line. (#11320)

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 0fdec2cd5a [Fix][UI] fix bug where icons are displayed in one line. (#11320)
0fdec2cd5a is described below

commit 0fdec2cd5a4053403ce43c4f4bce0b0e63585b12
Author: Devosend <de...@gmail.com>
AuthorDate: Mon Aug 8 09:53:58 2022 +0800

    [Fix][UI] fix bug where icons are displayed in one line. (#11320)
---
 .../src/views/projects/workflow/instance/index.module.scss        | 8 --------
 .../src/views/projects/workflow/instance/use-table.ts             | 3 +--
 2 files changed, 1 insertion(+), 10 deletions(-)

diff --git a/dolphinscheduler-ui/src/views/projects/workflow/instance/index.module.scss b/dolphinscheduler-ui/src/views/projects/workflow/instance/index.module.scss
index 7eac171996..f29869391b 100644
--- a/dolphinscheduler-ui/src/views/projects/workflow/instance/index.module.scss
+++ b/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 {
diff --git a/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts b/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts
index 1339113d98..611d52d14a 100644
--- a/dolphinscheduler-ui/src/views/projects/workflow/instance/use-table.ts
+++ b/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,