[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: don't say we're showing more results than we are!

+5 -2
+1 -1
app/components/Package/ListToolbar.vue
··· 146 146 $t( 147 147 'filters.count.showing_paginated', 148 148 { 149 - pageSize: pageSize === 'all' ? $n(filteredCount) : pageSize, 149 + pageSize: pageSize === 'all' ? $n(filteredCount) : Math.min(pageSize, filteredCount), 150 150 count: $n(filteredCount), 151 151 }, 152 152 filteredCount,
+4 -1
app/pages/search.vue
··· 654 654 $t( 655 655 'filters.count.showing_paginated', 656 656 { 657 - pageSize: preferredPageSize === 'all' ? $n(effectiveTotal) : preferredPageSize, 657 + pageSize: 658 + preferredPageSize === 'all' 659 + ? $n(effectiveTotal) 660 + : Math.min(preferredPageSize, effectiveTotal), 658 661 count: $n(effectiveTotal), 659 662 }, 660 663 effectiveTotal,