This is an automated email from the ASF dual-hosted git repository.
wanggenhua 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 e11e129cda [Improvement][UI] Add filterable for `src_table` and
`target_table` in the data quality task. (#12099)
e11e129cda is described below
commit e11e129cdaa05b3324f06072ea419a42b6d1cd18
Author: Amy0104 <[email protected]>
AuthorDate: Thu Sep 22 20:43:34 2022 +0800
[Improvement][UI] Add filterable for `src_table` and `target_table` in the
data quality task. (#12099)
---
.../src/views/projects/task/components/node/fields/use-rules.ts | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts
index dde32cbc62..364e3a32fe 100644
---
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts
+++
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-rules.ts
@@ -130,9 +130,11 @@ export function useRules(
}
if (item.field === 'src_table') {
item.options = srcTableOptions
+ item.props.filterable = true
}
if (item.field === 'target_table') {
item.options = targetTableOptions
+ item.props.filterable = true
}
if (item.field === 'src_field') {
item.options = srcTableColumnOptions