diff --git a/src/components/LinkItems/Item.vue b/src/components/LinkItems/Item.vue index 0cc259f0..dcccf788 100644 --- a/src/components/LinkItems/Item.vue +++ b/src/components/LinkItems/Item.vue @@ -185,8 +185,10 @@ export default { const providerText = this.provider ? `Provider: ${this.provider}` : ''; const lb1 = description && providerText ? '
' : ''; const hotkeyText = this.hotkey ? `
Press '${this.hotkey}' to launch` : ''; + const tooltipText = providerText + lb1 + description + hotkeyText; + const editText = 'Click to Edit, or right-click for more options'; return { - content: providerText + lb1 + description + hotkeyText, + content: (this.isEditMode ? editText : tooltipText), trigger: 'hover focus', hideOnTargetClick: true, html: true,