Minor bug fix

This commit is contained in:
sairaj mote 2023-09-24 18:09:11 +05:30
parent 9b0e43e644
commit 30a901f911

View File

@ -326,7 +326,7 @@
this.addEventListener("click", (e) => {
if (e.target.closest('.suggestion')) {
let searchBox = document.getElementById('main_search_field');
searchBox.value = e.target.textContent;
searchBox.value = e.target.textContent.trim();
processNavbarSearch()
}
});