Skip to content

Commit

Permalink
change locale of percentFormatter to en-US
Browse files Browse the repository at this point in the history
  • Loading branch information
pavyarov authored and pavyarov committed Apr 30, 2020
1 parent 739a6d3 commit 63fc8be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@drill4j/browser-extension",
"version": "0.3.9",
"version": "0.3.10",
"license": "Apache-2.0",
"scripts": {
"build": "NODE_ENV=production webpack",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Drill4J Browser Extension",
"version": "0.3.9",
"version": "0.3.10",
"background": {
"page": "background.html"
},
Expand Down
2 changes: 1 addition & 1 deletion src/utils/percent-formatter.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const percentFormatter = (value: number) => new Intl.NumberFormat('ru-RU', { maximumFractionDigits: 1 }).format(value);
export const percentFormatter = (value: number) => new Intl.NumberFormat('en-US', { maximumFractionDigits: 1 }).format(value);

0 comments on commit 63fc8be

Please sign in to comment.