From 70da3ef636218965b19d0f59211655df4f288c1d Mon Sep 17 00:00:00 2001 From: sparks-alec Date: Sun, 27 Feb 2022 19:10:36 -0500 Subject: [PATCH] fix string format issue with elapsed time display --- plugins/qlab/cue.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/qlab/cue.ejs b/plugins/qlab/cue.ejs index 0198dd7..970adb5 100644 --- a/plugins/qlab/cue.ejs +++ b/plugins/qlab/cue.ejs @@ -165,7 +165,7 @@ } bg+="'"; - return `
"+prettyFormatTime(Math.min(def, value))+"`; + return `
${prettyFormatTime(Math.min(def, value))}`; }else if(type=="postWait" || type=="action"){ return `${prettyFormatTime(def)}`;