From 00bd7e1f78db12678e817507117352da21acce12 Mon Sep 17 00:00:00 2001 From: Danila Gorelko Date: Wed, 14 Aug 2024 14:03:20 +0300 Subject: [PATCH] Remove 'Category list' from autocomplete menu (#252) --- static/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/view.js b/static/view.js index 909a092..78a3996 100644 --- a/static/view.js +++ b/static/view.js @@ -35,7 +35,7 @@ wrapper.appendChild(hamburgerSection); return Array .from(new DOMParser() .parseFromString(html, 'text/html') - .querySelectorAll('.mv-tags .p-name')) + .querySelectorAll('.mv-tag .p-name')) .map(a => a.innerText); });