From b2af83341d194a1b7957dd4045669aee047027ae Mon Sep 17 00:00:00 2001 From: Kyle Corbitt Date: Wed, 9 Aug 2023 21:58:41 -0700 Subject: [PATCH] Preserve linebreaks in model output --- app/src/components/OutputsTable/OutputCell/OutputCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/OutputsTable/OutputCell/OutputCell.tsx b/app/src/components/OutputsTable/OutputCell/OutputCell.tsx index de7eff1..b5a1955 100644 --- a/app/src/components/OutputsTable/OutputCell/OutputCell.tsx +++ b/app/src/components/OutputsTable/OutputCell/OutputCell.tsx @@ -191,7 +191,7 @@ export default function OutputCell({ return ( - {contentToDisplay} + {contentToDisplay} ); }