Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/react/src/components/Table/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ export const defaultProps = (baseProps) => ({
pageNumberAria: 'Page Number',
itemsPerPage: 'Items per page:',
itemsRangeWithTotal: (min, max, total) => `${min}–${max} of ${total} items`,
pageRange: (current, total) => `${current} of ${total} pages`,
pageRange: (current, total) => `of ${total} pages`,
/** table body */
overflowMenuAria: 'More actions',
clickToExpandAria: 'Click to expand content',
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/Table/TablePropTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export const defaultI18NPropTypes = {
pageNumberAria: 'Page Number',
itemsPerPage: 'Items per page:',
itemsRangeWithTotal: (min, max, total) => `${min}–${max} of ${total} items`,
pageRange: (current, total) => `${current} of ${total} pages`,
pageRange: (current, total) => `of ${total} pages`,
/** table body */
overflowMenuAria: 'More actions',
clickToExpandAria: 'Click to expand content',
Expand Down
Loading