fix(module: table): Infinite loop when HidePagination and PageSize were set at the same time and datasource is empty. (#2919)

This commit is contained in:
James Yeung 2022-11-30 12:14:56 +08:00 committed by GitHub
parent 9a4743c747
commit e9382b8f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -402,9 +402,9 @@ namespace AntDesign
_shouldRender = true;
}
if (HidePagination)
if (HidePagination && _dataSourceCount > 0)
{
_pageSize = _total;
_pageSize = _dataSourceCount;
}
if (!_preventRender)