diff options
| author | stilbruch <stilbruch@protonmail.com> | 2022-05-09 01:03:42 -0500 |
|---|---|---|
| committer | stilbruch <stilbruch@protonmail.com> | 2022-05-09 01:03:42 -0500 |
| commit | a20ad2dcaad3546d04992676ad1954f7268f3818 (patch) | |
| tree | b2c40c5dcb16684f51688a2968cfe0ddc23a1747 /app/templates/workout/record.html | |
| parent | e31a78c3cc4b7691c67b8109d4984a3a857b9fda (diff) | |
| download | Strengthy-a20ad2dcaad3546d04992676ad1954f7268f3818.tar.xz Strengthy-a20ad2dcaad3546d04992676ad1954f7268f3818.zip | |
Fix adding rows for record timers
Diffstat (limited to 'app/templates/workout/record.html')
| -rw-r--r-- | app/templates/workout/record.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/workout/record.html b/app/templates/workout/record.html index c7152cd..3805891 100644 --- a/app/templates/workout/record.html +++ b/app/templates/workout/record.html @@ -42,8 +42,8 @@ </div> </td> {% else %} - <td>{{ set['lbs'](class_='input') }}</td> - <td>{{ set['units'](class_='input') }}</td> + <td>{{ set['lbs'](class_='input', onkeydown='handleEnterKey(event)') }}</td> + <td>{{ set['units'](class_='input', onkeydown='handleEnterKey(event)') }}</td> {% endif %} <td> <a class="button" onClick="onClickSetCheck(this)"> |
