Compare commits

...

2 Commits

Author SHA1 Message Date
4aee2cba87 Merge pull request 'remove ontouchstart event' (#1) from fix-broken-delete-button into main
All checks were successful
Build and Deploy Svelte App / build-and-deploy (push) Successful in 2m18s
Reviewed-on: #1
2025-04-12 22:19:21 +00:00
46724c11aa remove ontouchstart event 2025-04-13 00:16:06 +02:00

View File

@ -97,10 +97,8 @@
<td>{wk.workout_type}</td>
<td>{wk.duration_minutes}</td>
<td>
<button
type="button"
ontouchstart={() => deleteRow(i)}
onclick={() => deleteRow(i)}><Trash2 color="red" /></button
<button type="button" onclick={() => deleteRow(i)}
><Trash2 color="red" /></button
>
</td>
</tr>