fix: date format

This commit is contained in:
Cory Dransfeldt 2024-04-06 09:31:01 -07:00
parent bca668ef72
commit 3075a0499e
No known key found for this signature in database
20 changed files with 53 additions and 118 deletions

View file

@ -36,7 +36,7 @@ permalink: /search.html
const query = $input.value
const results = (query.length > 1) ? getSearchResults(query) : []
if (query === '') renderSearchResults([])
if (results && window.fathom) fathom?.trackEvent(`Search query: ${query}`)
if (results && window.clicky) clicky.log('/search', query, 'click')
renderSearchResults(results)
})