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/03/21 02:19:00 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] Fix the Dry Run Flag column of task instance table error. (#9038)

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 3a87e76  [Fix][UI Next][V1.0.0-Alpha] Fix the Dry Run Flag column of task instance table error. (#9038)
3a87e76 is described below

commit 3a87e76c47253eb98226df3aaf373cbfb000aef3
Author: Amy0104 <97...@users.noreply.github.com>
AuthorDate: Mon Mar 21 10:18:54 2022 +0800

    [Fix][UI Next][V1.0.0-Alpha] Fix the Dry Run Flag column of task instance table error. (#9038)
---
 dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts b/dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts
index cd60f52..440f4f1 100644
--- a/dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts
+++ b/dolphinscheduler-ui-next/src/views/projects/task/instance/use-table.ts
@@ -126,7 +126,8 @@ export function useTable() {
       },
       {
         title: t('project.task.dry_run_flag'),
-        key: 'dryRun'
+        key: 'dryRun',
+        render: (row: IRecord) => (row.dryRun === 1 ? 'YES' : 'NO')
       },
       {
         title: t('project.task.host'),