From 02f081f901728dcb05ddc1a19ea74ca4123a6531 Mon Sep 17 00:00:00 2001 From: Shy Date: Thu, 9 May 2024 03:08:33 +0200 Subject: [PATCH] Added missing ';' at end of line --- static/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.js b/static/index.js index 3be7022..5e45401 100644 --- a/static/index.js +++ b/static/index.js @@ -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')) {