Skip to content

Commit

Permalink
feat: use decimal and numberic input modes
Browse files Browse the repository at this point in the history
  • Loading branch information
crlssn committed Nov 21, 2024
1 parent 3d4a991 commit f00a5f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/web/src/views/Workouts/WorkoutRoutine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ const cancelWorkout = async () => {
<div class="w-full">
<input
type="number"
inputmode="decimal"
step="0.05"
v-model.number="set.weight"
placeholder="Weight"
Expand All @@ -153,6 +154,7 @@ const cancelWorkout = async () => {
<div class="w-full">
<input
type="number"
inputmode="numeric"
step="1"
v-model.number="set.reps"
placeholder="Reps"
Expand Down

0 comments on commit f00a5f8

Please sign in to comment.