Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #327 from algolia/ehayman-patch-1
Browse files Browse the repository at this point in the history
Update stats component to use toLocaleString()
  • Loading branch information
rayrutjes authored Oct 13, 2017
2 parents 725fa4a + 3b41db3 commit f5f3f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Stats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
return this.searchStore.query;
},
totalResults() {
return this.searchStore.totalResults;
return this.searchStore.totalResults.toLocaleString();
},
processingTime() {
return this.searchStore.processingTimeMS;
Expand Down

0 comments on commit f5f3f96

Please sign in to comment.