Added missing ';' at end of line
All checks were successful
deployment / deployment (push) Successful in 21s

This commit is contained in:
Shy 2024-05-09 03:08:33 +02:00
parent ee0e3a65cd
commit 02f081f901

View file

@ -70,7 +70,7 @@ function getLocString(items, item) {
function search(e) {
const searchAttrs = ['id', 'name', 'type', 'note', 'content'];
const query = e.target.value;
const regex = new RegExp(query, 'i')
const regex = new RegExp(query, 'i');
let count = 0;
for (const elem of document.getElementsByClassName('result')) {