Md Jawad Noor Asif
2023-03-30 db27557aa307921cf035b7f62d9d9f2b452b1018
assets/js/semantic-search.js
@@ -24,7 +24,7 @@
    },
    body: JSON.stringify({
      query: query,
      limit: 8,
      limit: 10,
    }),
  })
  if (result.ok) {
@@ -48,7 +48,7 @@
  debounce((e) => {
    let term = e.target.value
    if (term !== "") {
      searchContents(term).then((results) => displayResults(results))
      searchContents(term).then((results) => displayResults(term, results))
    }
  }),
)