Browse Source

[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 <chenshuai19950725@gmail.com>
Co-authored-by: Rick Cheng <rickchengx@gmail.com>
Co-authored-by: xiangzihao <460888207@qq.com>
3.2.1-prepare
Chenshuai 10 months ago committed by GitHub
parent
commit
121c981a5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-dependent.ts

3
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

Loading…
Cancel
Save