refactor(client): pass props to antd list (#3319)

This commit is contained in:
Junyi 2024-01-04 20:57:21 +08:00 committed by GitHub
parent f803105e69
commit dfcd21f34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,7 @@ const InternalList = (props) => {
> >
<SortableItem className={cx('nb-list', componentCls, hashId)}> <SortableItem className={cx('nb-list', componentCls, hashId)}>
<AntdList <AntdList
{...props}
pagination={ pagination={
!meta || meta.count <= meta.pageSize !meta || meta.count <= meta.pageSize
? false ? false
@ -72,7 +73,8 @@ const InternalList = (props) => {
} }
loading={service?.loading} loading={service?.loading}
> >
{field.value?.map((item, index) => { {field.value?.length
? field.value.map((item, index) => {
return ( return (
<RecursionField <RecursionField
basePath={field.address} basePath={field.address}
@ -82,7 +84,8 @@ const InternalList = (props) => {
schema={getSchema(index)} schema={getSchema(index)}
></RecursionField> ></RecursionField>
); );
})} })
: null}
</AntdList> </AntdList>
<Designer /> <Designer />
</SortableItem> </SortableItem>