Skip to content

Commit

Permalink
Merge pull request #1573 from laws-africa/searchdoc
Browse files Browse the repository at this point in the history
Fix doc count string
  • Loading branch information
actlikewill authored Oct 13, 2023
2 parents 8abdd3a + 4744961 commit ea4c636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peachjam/js/components/FindDocuments/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
</div>
<div class="col-md order-md-1">
<span v-if="searchInfo.count > 9999">{{ $t('More than 10,000 documents found.') }}</span>
<span v-else>{{ $t('{document_count} documents found.', { document_count: searchInfo.count }) }}</span>
<span v-else>{{ $t('{document_count} documents found', { document_count: searchInfo.count }) }}</span>
</div>
</div>

Expand Down

0 comments on commit ea4c636

Please sign in to comment.