Skip to content

Commit

Permalink
Prevent default on click events for conductor delta buttons (#4033)
Browse files Browse the repository at this point in the history
  • Loading branch information
khalidadil authored Jul 16, 2021
1 parent 51d4ad5 commit e3999fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/timeConductor/Conductor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<button
ref="startOffset"
class="c-button c-conductor__delta-button"
@click="showTimePopupStart"
@click.prevent="showTimePopupStart"
>
{{ offsets.start }}
</button>
Expand Down Expand Up @@ -133,7 +133,7 @@
<button
ref="endOffset"
class="c-button c-conductor__delta-button"
@click="showTimePopupEnd"
@click.prevent="showTimePopupEnd"
>
{{ offsets.end }}
</button>
Expand Down

0 comments on commit e3999fd

Please sign in to comment.