You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ke...@apache.org on 2022/03/07 03:11:28 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] Fix the Workflow instance table action button is too small to click. (#8721)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 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 ac18b19  [Fix][UI Next][V1.0.0-Alpha] Fix the Workflow instance table action button is too small to click. (#8721)
ac18b19 is described below

commit ac18b195ec2c5e2792ab7e4da416a3740745d5b4
Author: songjianet <17...@qq.com>
AuthorDate: Mon Mar 7 11:11:23 2022 +0800

    [Fix][UI Next][V1.0.0-Alpha] Fix the Workflow instance table action button is too small to click. (#8721)
---
 .../projects/workflow/instance/components/table-action.tsx | 14 +++++++-------
 .../src/views/projects/workflow/instance/use-table.ts      |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx
index faa9e60..ecaa674 100644
--- a/dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx
+++ b/dolphinscheduler-ui-next/src/views/projects/workflow/instance/components/table-action.tsx
@@ -113,7 +113,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='info'
                 circle
                 disabled={
@@ -139,7 +139,7 @@ export default defineComponent({
               return (
                 <NButton
                   tag='div'
-                  size='tiny'
+                  size='small'
                   type='info'
                   circle
                   onClick={this.handleReRun}
@@ -169,7 +169,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='primary'
                 circle
                 onClick={this.handleReStore}
@@ -195,7 +195,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='error'
                 circle
                 onClick={this.handleStop}
@@ -224,7 +224,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='warning'
                 circle
                 disabled={
@@ -250,7 +250,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='error'
                 circle
                 disabled={
@@ -286,7 +286,7 @@ export default defineComponent({
             trigger: () => (
               <NButton
                 tag='div'
-                size='tiny'
+                size='small'
                 type='info'
                 circle
                 disabled={this.row?.disabled}
diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts b/dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts
index 1b381d6..98c7213 100644
--- a/dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts
+++ b/dolphinscheduler-ui-next/src/views/projects/workflow/instance/use-table.ts
@@ -198,7 +198,7 @@ export function useTable() {
       {
         title: t('project.workflow.operation'),
         key: 'operation',
-        width: 220,
+        width: 250,
         fixed: 'right',
         className: styles.operation,
         render: (_row: IWorkflowInstance, index: number) =>