From d2c0dcf06d632389d2c451b1d9d37735291d7e62 Mon Sep 17 00:00:00 2001 From: stilbruch Date: Mon, 16 May 2022 15:03:48 -0500 Subject: Fix record.js checking bug --- app/static/js/record.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/static') diff --git a/app/static/js/record.js b/app/static/js/record.js index a855ea4..2e99766 100644 --- a/app/static/js/record.js +++ b/app/static/js/record.js @@ -236,7 +236,7 @@ function onKeyDown(event) { if (!targetNode.parentElement.parentElement.isEqualNode(currentNode.parentElement.parentElement)) { // going to new row - if (currentNode.value != "" && allInputs[currentIndex - 1].value && allINputs[currentIndex - 1] != "") { + if (currentNode.value != "" && allInputs[currentIndex - 1].value && allInputs[currentIndex - 1] != "") { onClickSetCheck(currentNode.parentElement.parentElement.children[3].children[0]); } } -- cgit v1.2.3