We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca16c8c commit 1710489Copy full SHA for 1710489
packages/bigframes/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