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 121c981a5d [Fix-14788][dolphinscheduler-ui] Fix the task name of
dependent node, keyword filtering not supported (#14791)
121c981a5d is described below
commit 121c981a5d28e82d10f74427d3cbf5e4b100d29a
Author: Chenshuai <[email protected]>
AuthorDate: Tue Sep 12 15:11:00 2023 +0800
[Fix-14788][dolphinscheduler-ui] Fix the task name of dependent node,
keyword filtering not supported (#14791)
* fix: filter
* fix: dependent filter
---------
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-dependent.ts | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts
index 3fca7b417d..fc9911800b 100644
---
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts
+++
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts
@@ -241,7 +241,8 @@ export function useDependent(model: { [field: string]: any
}): IJsonItem[] {
}))
taskList.unshift({
value: -1,
- label: 'ALL'
+ label: 'ALL',
+ filterLabel: 'ALL'
})
taskCache[processCode] = taskList
return taskList