Skip to content

Commit

Permalink
fix: fix typo in function name
Browse files Browse the repository at this point in the history
contentMenu to contextMenu

Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou committed Dec 29, 2024
1 parent 248112f commit e8d9c3c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<tr v-longpress:600="(e) => openContentMenu(e)" @contextmenu.prevent="openContentMenu($event)">
<tr v-longpress:600="(e) => openContextMenu(e)" @contextmenu.prevent="openContextMenu($event)">
<td class="icon">
<v-icon :color="iconColor" :class="iconClass" tabindex="-1" @click="openEditDialog">
{{ icon }}
Expand Down Expand Up @@ -312,7 +312,7 @@ export default class TemperaturePanelListItem extends Mixins(BaseMixin) {
EventBus.$off('close-temperature-context-menu', this.closeContextMenu)
}
openContentMenu(event: MouseEvent) {
openContextMenu(event: MouseEvent) {
EventBus.$emit('close-temperature-context-menu')
this.showContextMenu = true
Expand Down

0 comments on commit e8d9c3c

Please sign in to comment.