Skip to content

Commit 188dcd3

Browse files
committed
implement using string
1 parent d6a50af commit 188dcd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/default/clock/clock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Module.register("clock", {
231231
const weekTextShort = weekTextArr[0][0];
232232
const weekValue = weekTextArr.at(-1);
233233

234-
weekWrapper.innerHTML = weekTextShort + weekValue;
234+
weekWrapper.innerHTML = `${weekTextShort}${weekValue}`;
235235
} else {
236236
weekWrapper.innerHTML = weekTranslated;
237237
}

0 commit comments

Comments
 (0)