Skip to content

Commit

Permalink
fix click on Calendar was registering two clicks
Browse files Browse the repository at this point in the history
  • Loading branch information
fivaz committed May 9, 2024
1 parent 25d6a01 commit 91e4a67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
interactivePanel = interact(container);
interactivePanel.on('tap', (e) => {
interactivePanel.on('click', (e) => {
//e.target instanceof HTMLInputElement is necessary so when clicking on the checkbox isDone doesn't open the form
if ($isSomethingDragging || e.target instanceof HTMLInputElement) return;
Expand Down

0 comments on commit 91e4a67

Please sign in to comment.