diff --git a/packages/console/src/components/Pagination/index.module.scss b/packages/console/src/components/Pagination/index.module.scss
index af4f856c6..c9c878382 100644
--- a/packages/console/src/components/Pagination/index.module.scss
+++ b/packages/console/src/components/Pagination/index.module.scss
@@ -46,13 +46,10 @@
}
li.disabled {
- .button {
- cursor: not-allowed;
- background: var(--color-neutral-95);
+ cursor: not-allowed;
- &:hover {
- background: var(--color-neutral-95);
- }
+ .button {
+ background: var(--color-neutral-95);
}
}
diff --git a/packages/console/src/components/Pagination/index.tsx b/packages/console/src/components/Pagination/index.tsx
index 3b97abb65..c32d979ac 100644
--- a/packages/console/src/components/Pagination/index.tsx
+++ b/packages/console/src/components/Pagination/index.tsx
@@ -57,8 +57,22 @@ function Pagination({ page, totalCount, pageSize, className, mode = 'normal', on
title={{pageNumber}}
/>
)}
- previousLabel={} />}
- nextLabel={} />}
+ previousLabel={
+ }
+ disabled={page === 1}
+ />
+ }
+ nextLabel={
+ }
+ disabled={page === pageCount}
+ />
+ }
breakLabel={