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

Commit

Permalink
feat(stats): update stats component to use toLocaleString()
Browse files Browse the repository at this point in the history
  • Loading branch information
ehayman authored and rayrutjes committed Oct 13, 2017
1 parent 725fa4a commit 3b41db3
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 3b41db3

Please sign in to comment.