Skip to content

Commit 8488edf

Browse files
authored
Update user percentage text for Bangle.js installs
1 parent 9d2e323 commit 8488edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ function getAppHTML(app, appInstalled, forInterface) {
507507
infoTxt.push(`Last update: ${(info.modified.toLocaleDateString())}`);
508508
if (info.installs){
509509
let percent=(info.installs / appCounts.installs * 100).toFixed(0);
510-
let percentText=percent<1?"Less than 1% of all users":percent+"% of all users";
510+
let percentText=percent<1?"Less than 1% of all users":percent+"% of all Bangle.js users";
511511
infoTxt.push(`${info.installs} reported installs (${percentText})`);
512512

513513
}

0 commit comments

Comments
 (0)