You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by xu...@apache.org on 2022/05/13 02:17:00 UTC

[dolphinscheduler] branch dev updated: [Fix][UI] Fix errorOutputPath column in dataquality page (#10015)

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

xujunjie 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 d17379da1f [Fix][UI] Fix errorOutputPath column in dataquality page (#10015)
d17379da1f is described below

commit d17379da1f822d0ccc01f737c3037c18416238db
Author: rockfang <65...@qq.com>
AuthorDate: Fri May 13 10:16:54 2022 +0800

    [Fix][UI] Fix errorOutputPath column in dataquality page (#10015)
---
 dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts b/dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts
index cfcb380836..e5472e842f 100644
--- a/dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts
+++ b/dolphinscheduler-ui/src/views/data-quality/task-result/use-table.ts
@@ -166,7 +166,7 @@ export function useTable() {
         title: t('data_quality.task_result.error_output_path'),
         key: 'errorOutputPath',
         render: (row: ResultItem) => {
-          return row.errorOutputPath ? row : '-'
+          return row.errorOutputPath ? row.errorOutputPath : '-'
         },
         width: 200
       },