Jacky Zhao
2022-11-22 e374e3abd42c1719ad1fdc6bd9c641efb2ddf954
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))
    }
  }),
)