From e3f17b5420ee002d7f0c1ab713749cc790318610 Mon Sep 17 00:00:00 2001 From: Palash Gupta Date: Fri, 15 Sep 2023 10:38:07 +0530 Subject: [PATCH] chore: tree is expanded by default (#3563) --- frontend/src/container/LogDetailedView/TableView.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/container/LogDetailedView/TableView.tsx b/frontend/src/container/LogDetailedView/TableView.tsx index 5c76fa506e..28910afbde 100644 --- a/frontend/src/container/LogDetailedView/TableView.tsx +++ b/frontend/src/container/LogDetailedView/TableView.tsx @@ -167,7 +167,9 @@ function TableView({ if (record.field === 'body') { const parsedBody = recursiveParseJSON(field); if (!isEmpty(parsedBody)) { - return ; + return ( + + ); } }