mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 09:38:51 +00:00
fix(plugin-workflow): fix query node getter field (#308)
This commit is contained in:
parent
3735d71e70
commit
dda2ed1f77
@ -54,7 +54,7 @@ export default {
|
||||
onChange({ type, options: { ...options, path } });
|
||||
}}>
|
||||
{collection.fields
|
||||
.filter(field => BaseTypeSet.has(field.uiSchema.type))
|
||||
.filter(field => BaseTypeSet.has(field.uiSchema?.type))
|
||||
.map(field => (
|
||||
<Select.Option key={field.name} value={field.name}>{compile(field.uiSchema.title)}</Select.Option>
|
||||
))}
|
||||
|
Loading…
Reference in New Issue
Block a user