From c14c21bfa8caad6df00355fa4a44a59bd8125424 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sat, 4 Mar 2023 23:30:47 +0100 Subject: [PATCH] Removed console.log --- src/truth-table.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 287540f..b06eaa8 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -86,11 +86,12 @@ const TruthTablePage: Component = () => { e.preventDefault(); // Stops the page from reloading onClick let exp = getInputElement()?.value; - exp = exp.replaceAll("|", "/").trimEnd(); - if (exp) { + exp = exp.replaceAll("|", "/").trimEnd(); + history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() }& hide=${ hideValues().value }&sort=${ sortValues().value }&hideIntermediate=${ hideIntermediates() }`); + getFetchResult(exp); } } @@ -341,7 +342,6 @@ interface SingleMenuItem { const SingleMenuItem: Component = ({ option, currentValue, onClick }) => { const isSelected = () => currentValue()?.value === option.value; - console.log(currentValue()?.value, option.value, isSelected()); return (