summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFivePixels <o5pxels@gmail.com>2022-05-11 18:30:58 -0500
committerFivePixels <o5pxels@gmail.com>2022-05-11 18:30:58 -0500
commita28cbc3dc50def08411c4655fce036885fa8602e (patch)
tree2dbf0e70adeae43be0d571e8845a8facbab32132 /app
parent8e130da9137297ac1805e94e4cd9c10eed3348cd (diff)
downloadStrengthy-a28cbc3dc50def08411c4655fce036885fa8602e.tar.xz
Strengthy-a28cbc3dc50def08411c4655fce036885fa8602e.zip
fix adding sets not clearing new row
Diffstat (limited to 'app')
-rw-r--r--app/static/js/record.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/static/js/record.js b/app/static/js/record.js
index 68538ca..93ee19a 100644
--- a/app/static/js/record.js
+++ b/app/static/js/record.js
@@ -251,7 +251,7 @@ function onClickAddSet(elem) {
const row = tableBody.children[0].cloneNode(true);
// Add new row to table
- setReset(row, tableBody.children.length, false);
+ setReset(row, tableBody.children.length, true);
setSetid(row, tableBody.children.length)
tableBody.appendChild(row)
}