From 6489dd0e93a69ddc944113d04e3d8cec475099d2 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 26 May 2022 22:52:12 +0000 Subject: [PATCH] Update content/_index.md Co-authored-by: Steven Hall --- content/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_index.md b/content/_index.md index bbdcea1..a64c516 100644 --- a/content/_index.md +++ b/content/_index.md @@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', () => { search.addEventListener('change', e => { // grab search input value const searchText = e.target.value.toLowerCase() - // for each receipe hide all but matched + // for each recipe hide all but matched rec.forEach(el => { const recipeName = el.innerText.toLowerCase() const isMatch = recipeName.includes(searchText)