fix click event bubbling from context menu

This commit is contained in:
Thomas Amland 2021-01-24 12:39:15 +01:00
parent 588f975eba
commit a3fd828834
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@
<td v-if="!noDuration" class="text-right d-none d-md-table-cell">
{{ $formatDuration(item.duration) }}
</td>
<td class="text-right">
<td class="text-right" @click.stop="">
<TrackContextMenu :track="item">
<slot name="context-menu" :index="index" :item="item" />
</TrackContextMenu>

View File

@ -34,7 +34,7 @@
</small>
</div>
</td>
<td class="text-right">
<td class="text-right" @click.stop="">
<TrackContextMenu :track="item" />
</td>
</tr>