feat: add critical checkbox to the norm node, send it with the program, add test. #29

Merged
9828273 merged 3 commits from feat/norm-critical-checkbox into demo 2025-12-16 13:13:01 +00:00
Showing only changes of commit 62c8118650 - Show all commits

View File

@@ -64,7 +64,7 @@ export default function NormNode(props: NodeProps<NormNode>) {
id={checkbox_id}
type={"checkbox"}
checked={data.critical || false}
onChange={(e) => setAchieved(e.target.checked)}
onChange={(e) => setCritical(e.target.checked)}
/>
</div>
<Handle type="source" position={Position.Right} id="norms"/>