mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 12:55:08 +00:00
AssetDialog: Include pagination in stack for better alignment
This commit is contained in:
parent
fc42a110be
commit
1af71c1ed1
@ -140,18 +140,18 @@ export const BrowseStep = ({
|
|||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
</Stack>
|
|
||||||
|
|
||||||
{pagination.pageCount > 0 && (
|
{pagination.pageCount > 0 && (
|
||||||
<Flex justifyContent="space-between">
|
<Flex justifyContent="space-between">
|
||||||
<PageSize pageSize={queryObject.pageSize} onChangePageSize={onChangePageSize} />
|
<PageSize pageSize={queryObject.pageSize} onChangePageSize={onChangePageSize} />
|
||||||
<PaginationFooter
|
<PaginationFooter
|
||||||
activePage={queryObject.page}
|
activePage={queryObject.page}
|
||||||
onChangePage={onChangePage}
|
onChangePage={onChangePage}
|
||||||
pagination={pagination}
|
pagination={pagination}
|
||||||
/>
|
/>
|
||||||
</Flex>
|
</Flex>
|
||||||
)}
|
)}
|
||||||
|
</Stack>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user