We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a12c5f commit 4768f1cCopy full SHA for 4768f1c
1 file changed
src/app/cfg/app.js
@@ -50,7 +50,7 @@ const app = {
50
totalSeconds %= 3600;
51
let minutes = Math.floor(totalSeconds / 60);
52
let seconds = totalSeconds % 60;
53
- let HR = `**${days} days, ${hours} hours, ${minutes} minutes and ${Math.round(seconds)} seconds**`;
+ let HR = `${days} days, ${hours} hours, ${minutes} minutes and ${Math.round(seconds)} seconds`;
54
55
if (days == 0) HR = HR.replace(days + " days, ", "");
56
else if (days == 1) HR = HR.replace("days", "day");
0 commit comments