From 600be471c3f19fa6ef9ff29b0a19abfe45147516 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sat, 26 Sep 2020 15:04:08 -0700 Subject: [PATCH] ArgsTable: Remove the "simple" detection added in #11868 --- lib/components/src/blocks/ArgsTable/ArgValue.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/src/blocks/ArgsTable/ArgValue.tsx b/lib/components/src/blocks/ArgsTable/ArgValue.tsx index 14e15015851f..bc1b278ccd32 100644 --- a/lib/components/src/blocks/ArgsTable/ArgValue.tsx +++ b/lib/components/src/blocks/ArgsTable/ArgValue.tsx @@ -141,7 +141,7 @@ const ArgSummary: FC = ({ value, initialExpandedArgs }) => { const cannotBeSafelySplitted = /[(){}[\]<>]/.test(summaryAsString); if (cannotBeSafelySplitted) { - return ; + return ; } const summaryItems = getSummaryItems(summaryAsString);