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

zihaoxiang 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 034e99f5a9 [Fix-14790][dolphinscheduler-ui] Fix the data quality task, 
keyword filtering not supported (#14792)
034e99f5a9 is described below

commit 034e99f5a9f6f3877ca974603f245160088a6d30
Author: Chenshuai <[email protected]>
AuthorDate: Tue Sep 12 12:35:57 2023 +0800

    [Fix-14790][dolphinscheduler-ui] Fix the data quality task, keyword 
filtering not supported (#14792)
    
    * fix: filter
    
    * fix: data-quality task filter rule
    
    ---------
    
    Co-authored-by: Jim Chen <[email protected]>
    Co-authored-by: Rick Cheng <[email protected]>
    Co-authored-by: xiangzihao <[email protected]>
---
 .../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 3df621bb5c..bf9c487fb8 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
@@ -88,6 +88,7 @@ export function useRules(
       props: responseItem.props,
       value: responseItem.value
     }
+    item.props.filterable = true
     const name = responseItem.name?.replace('$t(', '').replace(')', '')
     item.name = name ? t(`project.node.${name}`) : ''
 
@@ -285,6 +286,7 @@ export function useRules(
       name: t('project.node.rule_name'),
       props: {
         loading: ruleLoading,
+        filterable: true,
         onUpdateValue: getRuleById
       },
       options: rules

Reply via email to