feat(pins): make them togglable (#4)

* feat(pins): make them togglable
This commit is contained in:
he3als
2024-10-31 14:09:25 +00:00
committed by GitHub
parent 982e92cc7f
commit e795e3880e
+1 -1
View File
@@ -218,7 +218,7 @@ function updateResults() {
function setSearch(query) {
let search = document.getElementById('search-products');
search.value = query;
search.value = search.value == query ? null : query;
updateResults();
}