style: keep the logs pagination visible

This commit is contained in:
jialin
2025-06-27 10:15:11 +08:00
parent e2d79a6802
commit cbeea23295
14 changed files with 116 additions and 132 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
import AutoTooltip from '@/components/auto-tooltip';
import DeleteModal from '@/components/delete-modal';
import DropdownButtons from '@/components/drop-down-buttons';
import PageTools from '@/components/page-tools';
import { PageAction } from '@/config';
@@ -54,7 +55,7 @@ const Users: React.FC = () => {
rowSelection,
queryParams,
sortOrder,
DeleteModal,
modalRef,
handleDelete,
handleDeleteBatch,
fetchData,
@@ -320,7 +321,7 @@ const Users: React.FC = () => {
onCancel={handleModalCancel}
onOk={handleModalOk}
></AddModal>
<DeleteModal></DeleteModal>
<DeleteModal ref={modalRef}></DeleteModal>
</>
);
};