Prevent default on click events for conductor delta buttons (#4022)

* Prevent default on click events for conductor delta buttons
This commit is contained in:
Khalid Adil 2021-07-15 16:46:53 -05:00 committed by GitHub
parent 4a7ebe326c
commit 1f5cb7ca42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@
<button
ref="startOffset"
class="c-button c-conductor__delta-button"
@click="showTimePopupStart"
@click.prevent="showTimePopupStart"
>
{{ offsets.start }}
</button>
@ -133,7 +133,7 @@
<button
ref="endOffset"
class="c-button c-conductor__delta-button"
@click="showTimePopupEnd"
@click.prevent="showTimePopupEnd"
>
{{ offsets.end }}
</button>