fix string format issue with elapsed time display

This commit is contained in:
sparks-alec
2022-02-27 19:10:36 -05:00
parent 017fa6b6d3
commit 70da3ef636
+1 -1
View File
@@ -165,7 +165,7 @@
}
bg+="'";
return `<div class='q-time-elapsed' ${bg}>"+prettyFormatTime(Math.min(def, value))+"</span>`;
return `<div class='q-time-elapsed' ${bg}>${prettyFormatTime(Math.min(def, value))}</span>`;
}else if(type=="postWait" || type=="action"){
return `<span class='q-gray-text'>${prettyFormatTime(def)}</span>`;