From 913ec3d05ebd1ea475beda667e2f478cd9e565fe Mon Sep 17 00:00:00 2001 From: David Ashby Date: Sun, 31 Oct 2021 19:25:44 -0400 Subject: [PATCH] fix searching --- frontend/files/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/files/index.html b/frontend/files/index.html index 7d2f96d..f8f357c 100644 --- a/frontend/files/index.html +++ b/frontend/files/index.html @@ -124,10 +124,10 @@ function searchCleaner(str) { return str .toLowerCase() - .replace('"', "") - .replace(":", "") - .replace("'", "") - .replace(" ", ""); + .replaceAll('"', "") + .replaceAll(":", "") + .replaceAll("'", "") + .replaceAll(" ", ""); } function ISBNfromEAN(EAN) {