From 334bd93099e1bbfb37aa660c633e092444c74b6c Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 4 Sep 2025 13:50:07 +0200 Subject: [PATCH] feat: add tooltips for navigation and action buttons in CommandPalette; update localization files for new tooltip texts --- app/components/chat/CommandPalette.vue | 165 ++++++++++++++++--------- app/pages/index.vue | 3 + locales/en.json | 8 ++ locales/es.json | 8 ++ locales/fr.json | 8 ++ 5 files changed, 136 insertions(+), 56 deletions(-) diff --git a/app/components/chat/CommandPalette.vue b/app/components/chat/CommandPalette.vue index dcbb37f..d832fea 100644 --- a/app/components/chat/CommandPalette.vue +++ b/app/components/chat/CommandPalette.vue @@ -61,6 +61,12 @@ function up() { function down() { window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' }) } + +const toolTipContent = { + align: 'center', + side: 'top', + sideOffset: 0, +}