fix(audit-log): remove invalid defaultMessage prop from T component in pagination
All checks were successful
Docker Cloud Build / Build & Publish Image (push) Successful in 11m13s
All checks were successful
Docker Cloud Build / Build & Publish Image (push) Successful in 11m13s
This commit is contained in:
parent
9b5152d81f
commit
adf738bc33
1 changed files with 2 additions and 2 deletions
|
|
@ -155,7 +155,7 @@ export default function Table({ data, isFetching, onSelectItem, globalFilter }:
|
|||
onClick={() => tableInstance.previousPage()}
|
||||
disabled={!tableInstance.getCanPreviousPage()}
|
||||
>
|
||||
‹ <T id="action.previous" defaultMessage="Trước" />
|
||||
‹ Trước
|
||||
</button>
|
||||
<span className="btn btn-sm disabled text-muted px-2">
|
||||
{pageIndex + 1} / {pageCount}
|
||||
|
|
@ -166,7 +166,7 @@ export default function Table({ data, isFetching, onSelectItem, globalFilter }:
|
|||
onClick={() => tableInstance.nextPage()}
|
||||
disabled={!tableInstance.getCanNextPage()}
|
||||
>
|
||||
<T id="action.next" defaultMessage="Tiếp" /> ›
|
||||
Tiếp ›
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue