diff --git a/src/frontend/src/shared/components/textOutputView/index.tsx b/src/frontend/src/shared/components/textOutputView/index.tsx index 57ad7feb0..4acd3e479 100644 --- a/src/frontend/src/shared/components/textOutputView/index.tsx +++ b/src/frontend/src/shared/components/textOutputView/index.tsx @@ -10,14 +10,25 @@ const TextOutputView = ({ if (typeof value === "object" && Object.keys(value).includes("text")) { value = value.text; } + + const isTruncated = value?.length > 20000; + return ( -