diff options
| author | FivePixels <o5pxels@gmail.com> | 2022-05-11 18:30:58 -0500 |
|---|---|---|
| committer | FivePixels <o5pxels@gmail.com> | 2022-05-11 18:30:58 -0500 |
| commit | a28cbc3dc50def08411c4655fce036885fa8602e (patch) | |
| tree | 2dbf0e70adeae43be0d571e8845a8facbab32132 /app | |
| parent | 8e130da9137297ac1805e94e4cd9c10eed3348cd (diff) | |
| download | Strengthy-a28cbc3dc50def08411c4655fce036885fa8602e.tar.xz Strengthy-a28cbc3dc50def08411c4655fce036885fa8602e.zip | |
fix adding sets not clearing new row
Diffstat (limited to 'app')
| -rw-r--r-- | app/static/js/record.js | 2 |
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) } |
