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 00a27a1 commit 33a1fa7Copy full SHA for 33a1fa7
_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