We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cac75ea + 406fcbb commit 67c65f4Copy full SHA for 67c65f4
1 file changed
src/views/CopyCat.vue
@@ -139,7 +139,7 @@
139
There was an error getting the results: "{{ wcResults.error.message }}"
140
</h2>
141
<h2 v-else-if="wcResults?.results?.briefRecords && wcResults?.results?.numberOfRecords > 0 && !queryingWc">
142
- Showing 10 of {{ wcResults.results.numberOfRecords }} results </h2>
+ Showing {{ wcResults.results.numberOfRecords > 10 ? 10 : wcResults.results.numberOfRecords }} of {{ wcResults.results.numberOfRecords }} results </h2>
143
<!-- Pagination -->
144
<div v-if="(wcResults.results && wcResults.results.numberOfRecords > wcLimit) && !queryingWc"
145
class="wc-search-paging">
0 commit comments