diff --git a/web/satellite/src/components/common/TablePagination.vue b/web/satellite/src/components/common/TablePagination.vue index 00ada327d8d4..4c6143809673 100644 --- a/web/satellite/src/components/common/TablePagination.vue +++ b/web/satellite/src/components/common/TablePagination.vue @@ -200,7 +200,7 @@ function sizeChanged(size: number) { } // if the new size is large enough to cause the page index to be out of range // we calculate an appropriate new page index. - const maxPage = Math.ceil(Math.ceil(props.totalItemsCount / size)); + const maxPage = Math.ceil(props.totalItemsCount / size); const page = currentPageNumber.value > maxPage ? maxPage : currentPageNumber.value; if (!props.onPageChange) { return; diff --git a/web/satellite/vuetify-poc/src/components/BrowserCardViewComponent.vue b/web/satellite/vuetify-poc/src/components/BrowserCardViewComponent.vue index 229cd99a8fbc..5b6c127b3879 100644 --- a/web/satellite/vuetify-poc/src/components/BrowserCardViewComponent.vue +++ b/web/satellite/vuetify-poc/src/components/BrowserCardViewComponent.vue @@ -2,25 +2,139 @@ // See LICENSE for copying information.