From 4a2727b71d8976366cc35e18048ad9742ccb1898 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sat, 31 May 2025 20:24:31 -0700 Subject: [PATCH] Add a tooltip to the file upload button --- js/main.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/main.js b/js/main.js index f23dc246..0fdd7ffd 100644 --- a/js/main.js +++ b/js/main.js @@ -872,3 +872,10 @@ function navigateLastAssistantMessage(direction) { return false; } + +//------------------------------------------------ +// Tooltips +//------------------------------------------------ + +// File upload button +document.querySelector("#chat-input .upload-button").title = "Upload text files, PDFs, and DOCX documents";