Skip to content

Commit

Permalink
Add more missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
solth authored Jan 27, 2025
1 parent a2ddc4a commit 56e7145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kitodo/src/main/webapp/WEB-INF/resources/js/defaultScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ window.updateLogoutCountdown = function(t) {
}
let currentMessage = growlMessage.text();
if (currentMessage.match(/\d+:\d+/g)) {
growlMessage.text(currentMessage.replace(/\d+:\d+/g, currentTime))
growlMessage.text(currentMessage.replace(/\d+:\d+/g, currentTime));
} else {
growlMessage.text(currentMessage + " " + currentTime);
}
}
};

0 comments on commit 56e7145

Please sign in to comment.