mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:06:31 +00:00
fix: error opening when data scope is null (#2178)
* fix: error opening when data scope is null * fix: error opening when data scope is null
This commit is contained in:
parent
650a580aca
commit
46294692dd
@ -10,7 +10,7 @@ export const FilterItems = observer(
|
|||||||
const field = useField<ArrayFieldModel>();
|
const field = useField<ArrayFieldModel>();
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{field?.value?.map((item, index) => {
|
{field?.value?.filter(Boolean).map((item, index) => {
|
||||||
return (
|
return (
|
||||||
<RemoveConditionContext.Provider key={index} value={() => field.remove(index)}>
|
<RemoveConditionContext.Provider key={index} value={() => field.remove(index)}>
|
||||||
<ObjectField name={index} component={[item.$and || item.$or ? FilterGroup : FilterItem]} />
|
<ObjectField name={index} component={[item.$and || item.$or ? FilterGroup : FilterItem]} />
|
||||||
|
Loading…
Reference in New Issue
Block a user