Skip to content

Commit

Permalink
fix(standalone,monitoring): increasing instant traffic page limit (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaile authored Oct 8, 2024
1 parent 9292d21 commit af7c1dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const props = defineProps<{

const { t } = useI18n()

const pageSize = ref(5)
const pageSize = ref(10)
const { currentPage, paginatedItems } = useItemPagination(() => props.topApps, {
itemsPerPage: pageSize
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const props = defineProps<{

const { t } = useI18n()

const pageSize = ref(5)
const pageSize = ref(10)
const { currentPage, paginatedItems } = useItemPagination(() => props.topHosts, {
itemsPerPage: pageSize
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const props = defineProps<{

const { t } = useI18n()

const pageSize = ref(5)
const pageSize = ref(10)
const { currentPage, paginatedItems } = useItemPagination(() => props.topProtocols, {
itemsPerPage: pageSize
})
Expand Down

0 comments on commit af7c1dd

Please sign in to comment.