mirror of
https://github.com/nasa/openmct.git
synced 2025-06-20 16:10:23 +00:00
Prevent default on click events for conductor delta buttons (#4022)
* Prevent default on click events for conductor delta buttons
This commit is contained in:
@ -85,7 +85,7 @@
|
|||||||
<button
|
<button
|
||||||
ref="startOffset"
|
ref="startOffset"
|
||||||
class="c-button c-conductor__delta-button"
|
class="c-button c-conductor__delta-button"
|
||||||
@click="showTimePopupStart"
|
@click.prevent="showTimePopupStart"
|
||||||
>
|
>
|
||||||
{{ offsets.start }}
|
{{ offsets.start }}
|
||||||
</button>
|
</button>
|
||||||
@ -133,7 +133,7 @@
|
|||||||
<button
|
<button
|
||||||
ref="endOffset"
|
ref="endOffset"
|
||||||
class="c-button c-conductor__delta-button"
|
class="c-button c-conductor__delta-button"
|
||||||
@click="showTimePopupEnd"
|
@click.prevent="showTimePopupEnd"
|
||||||
>
|
>
|
||||||
{{ offsets.end }}
|
{{ offsets.end }}
|
||||||
</button>
|
</button>
|
||||||
|
Reference in New Issue
Block a user