We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8eb60 commit b7157eaCopy full SHA for b7157ea
web_src/js/features/stopwatch.ts
@@ -144,9 +144,7 @@ function updateStopwatchData(data) {
144
return Boolean(data.length);
145
}
146
147
-// TODO: This flickers on page load, we could avoid this by making a custom
148
-// element to render time periods. Feeding a datetime in backend does not work
149
-// when time zone between server and client differs.
+// TODO: This flickers on page load, we could avoid this by making a custom element to render time periods.
150
function updateStopwatchTime(seconds: number) {
151
const hours = seconds / 3600 || 0;
152
const minutes = seconds / 60 || 0;
0 commit comments