1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00

refactor(js): add jshint check for strict comparison

This commit is contained in:
Julien Voisin 2025-01-17 01:50:09 +00:00 committed by GitHub
parent 605eeb4525
commit 91f9a7650e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 11 deletions

View file

@ -17,7 +17,7 @@ class KeyboardHandler {
return;
}
if (key != "Enter") {
if (key !== "Enter") {
event.preventDefault();
}