diff --git a/ui/src/pages/Invocations.tsx b/ui/src/pages/Invocations.tsx index effb48c..9fd609a 100644 --- a/ui/src/pages/Invocations.tsx +++ b/ui/src/pages/Invocations.tsx @@ -104,15 +104,6 @@ const STATUS_OPTIONS = STATUSES.map((status) => ({ value: status, })); -const truncateMiddle = ( - value: string, - startChars = 8, - endChars = 6, -): string => { - if (value.length <= startChars + endChars + 1) return value; - return `${value.slice(0, startChars)}…${value.slice(-endChars)}`; -}; - const wildcardToRegExp = (pattern: string): RegExp => { const escapedPattern = pattern.replace(/[.+^${}()|[\]\\]/g, "\\$&"); return new RegExp(`^${escapedPattern.replace(/\*/g, ".*")}$`); @@ -672,7 +663,6 @@ const Invocations: React.FC = () => { zIndex={1}> Agent - ID Server Tool Agent Record @@ -756,21 +746,6 @@ const Invocations: React.FC = () => { ); })()} - - - - {truncateMiddle(inv.invocation_id)} - - - {inv.server_name || "none"}