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 } });
|
onChange({ type, options: { ...options, path } });
|
||||||
}}>
|
}}>
|
||||||
{collection.fields
|
{collection.fields
|
||||||
.filter(field => BaseTypeSet.has(field.uiSchema.type))
|
.filter(field => BaseTypeSet.has(field.uiSchema?.type))
|
||||||
.map(field => (
|
.map(field => (
|
||||||
<Select.Option key={field.name} value={field.name}>{compile(field.uiSchema.title)}</Select.Option>
|
<Select.Option key={field.name} value={field.name}>{compile(field.uiSchema.title)}</Select.Option>
|
||||||
))}
|
))}
|
||||||
|
Loading…
Reference in New Issue
Block a user