Skip to content

Commit 90a60cb

Browse files
author
Gusted
committed
Fix linter
1 parent 0514e79 commit 90a60cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web_src/js/features/stopwatch.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ function updateStopwatchData(data) {
127127
const watch = data[0];
128128
const btnEl = $('.active-stopwatch-trigger');
129129
if (!watch) {
130-
if (updateTimeInterval) {
131-
clearInterval(updateTimeInterval);
132-
updateTimeInterval = null;
133-
}
130+
if (updateTimeInterval) {
131+
clearInterval(updateTimeInterval);
132+
updateTimeInterval = null;
133+
}
134134
btnEl.addClass('hidden');
135135
} else {
136136
const {repo_owner_name, repo_name, issue_index, seconds} = watch;

0 commit comments

Comments
 (0)