From 0b74c71483072b11f968f1c16c65c4b19539256d Mon Sep 17 00:00:00 2001 From: Karan Bhatia Date: Thu, 18 Dec 2025 07:58:12 -0800 Subject: [PATCH] Show truncated query text in query history UI --- webapp/src/components/history.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/history.tsx b/webapp/src/components/history.tsx index efbd8addf..6018cda7e 100644 --- a/webapp/src/components/history.tsx +++ b/webapp/src/components/history.tsx @@ -87,9 +87,10 @@ export function History() { handleShowModal(text) }} underline - style={{ cursor: "pointer" }} + style={{ cursor: "pointer", width: "300px"}} + ellipsis={{ showTooltip: true }} > - View Query + {text} );