This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.0.0-beta-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 931770be702ef5721449211fac87dfea2303551a Author: rockfang <[email protected]> AuthorDate: Fri May 13 10:16:54 2022 +0800 [Fix][UI] Fix errorOutputPath column in dataquality page (#10015) (cherry picked from commit d17379da1f822d0ccc01f737c3037c18416238db) --- 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 },
