mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 04:05:45 +00:00
fix(client): fix field names of variable input (#5128)
This commit is contained in:
parent
ffcc60cadf
commit
eaf23766c7
@ -132,14 +132,14 @@ function getTypedConstantOption(type: string, types: UseTypeConstantType, fieldN
|
||||
)
|
||||
: allTypes
|
||||
).map((item) =>
|
||||
Object.keys(item).reduce(
|
||||
Object.keys(fieldNames).reduce(
|
||||
(result, key) =>
|
||||
fieldNames[key] in item
|
||||
key in item
|
||||
? Object.assign(result, {
|
||||
[fieldNames[key]]: item[key],
|
||||
})
|
||||
: result,
|
||||
item,
|
||||
{ ...item },
|
||||
),
|
||||
);
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user