Skip to content

Commit 4768f1c

Browse files
Make TStoHR function not put time in bold by default
1 parent 5a12c5f commit 4768f1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/cfg/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const app = {
5050
totalSeconds %= 3600;
5151
let minutes = Math.floor(totalSeconds / 60);
5252
let seconds = totalSeconds % 60;
53-
let HR = `**${days} days, ${hours} hours, ${minutes} minutes and ${Math.round(seconds)} seconds**`;
53+
let HR = `${days} days, ${hours} hours, ${minutes} minutes and ${Math.round(seconds)} seconds`;
5454

5555
if (days == 0) HR = HR.replace(days + " days, ", "");
5656
else if (days == 1) HR = HR.replace("days", "day");

0 commit comments

Comments
 (0)