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 PageTools from '@/components/page-tools';
import { PageAction } from '@/config';
import HotKeys from '@/config/hotkeys';
@@ -31,7 +32,7 @@ const APIKeys: React.FC = () => {
rowSelection,
queryParams,
sortOrder,
DeleteModal,
modalRef,
handleDelete,
handleDeleteBatch,
fetchData,
@@ -260,7 +261,7 @@ const APIKeys: React.FC = () => {
onCancel={handleModalCancel}
onOk={handleModalOk}
></AddAPIKeyModal>
<DeleteModal></DeleteModal>
<DeleteModal ref={modalRef}></DeleteModal>
</>
);
};