From df4909af6f07f692afb73e50f69854e2197bb00a Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Thu, 12 Jan 2023 23:34:39 +0100 Subject: [PATCH] Fixed checkmark not updating --- src/truth-table.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 3750cb2..ccfb7bc 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -8,7 +8,7 @@ import { diffChars } from "diff"; import MyMenu from "./components/menu"; import { type BookType, utils, write, writeFile } from "xlsx" import type { FetchResult } from "./types/interfaces"; -import { type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js"; +import { Accessor, type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js"; import { For, render } from "solid-js/web"; import Row from "./components/row"; import { arrowDownTray, check, eye, eyeSlash, funnel, magnifyingGlass, xMark } from "solid-heroicons/solid"; @@ -225,7 +225,7 @@ const TruthTablePage: Component = () => { { (option) => ( setHideValues(option) } option={ option } - currentValue={ hideValues() } /> + currentValue={ hideValues } /> ) } } itemsClassName={ "right-0" } @@ -240,7 +240,7 @@ const TruthTablePage: Component = () => { children={ { (option) => ( - setSortValues(option) } /> ) } @@ -346,7 +346,7 @@ export default TruthTablePage; interface SingleMenuItem { option: Option, - currentValue?: Option, + currentValue?: Accessor