We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61cdc6a commit 46d8b71Copy full SHA for 46d8b71
_includes/pageviews/goatcounter.html
@@ -9,7 +9,8 @@
9
fetch(url)
10
.then((response) => response.json())
11
.then((data) => {
12
- pv.innerText = new Intl.NumberFormat().format(data.count);
+ const count = data.count.replace(/\s/g, '');
13
+ pv.innerText = new Intl.NumberFormat().format(count);
14
})
15
.catch((error) => {
16
pv.innerText = '1';
0 commit comments