diff --git a/src/components/LinkItems/Item.vue b/src/components/LinkItems/Item.vue index 8572592c..dbe96ca9 100644 --- a/src/components/LinkItems/Item.vue +++ b/src/components/LinkItems/Item.vue @@ -131,6 +131,7 @@ export default { }, /* Returns configuration object for the tooltip */ getTooltipOptions() { + if (!this.description) return {}; // If no description, then skip const hotkeyText = this.hotkey ? `\nPress '${this.hotkey}' to launch` : ''; return { disabled: !this.description, @@ -410,16 +411,18 @@ export default {