We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4be75 commit e83836eCopy full SHA for e83836e
bigframes/display/table_widget.js
@@ -88,7 +88,9 @@ function render({ model, el }) {
88
const totalPages = Math.ceil(rowCount / pageSize);
89
90
rowCountLabel.textContent = `${rowCount.toLocaleString()} total rows`;
91
- paginationLabel.textContent = `Page ${currentPage + 1} of ${totalPages || 1}`;
+ paginationLabel.textContent = `Page ${(
92
+ currentPage + 1
93
+ ).toLocaleString()} of ${(totalPages || 1).toLocaleString()}`;
94
prevPage.disabled = currentPage === 0;
95
nextPage.disabled = currentPage >= totalPages - 1;
96
pageSizeSelect.value = pageSize;
0 commit comments