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 d5480f957b - Show all commits

View File

@@ -42,7 +42,7 @@ export default function NormNode(props: NodeProps<NormNode>) {
updateNodeData(props.id, {norm: value});
}
const setAchieved = (value: boolean) => {
const setCritical = (value: boolean) => {
updateNodeData(props.id, {...data, critical: value});
}