From 3fbc5b7c10c3cde383515c6bffe1823e48b8acb3 Mon Sep 17 00:00:00 2001 From: Alexey Rodionov Date: Thu, 23 Apr 2020 20:37:06 +0300 Subject: [PATCH] [UX] Place arguments into round brackets --- src/Explorer.js | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/src/Explorer.js b/src/Explorer.js index 1c7f0df..f82dea1 100644 --- a/src/Explorer.js +++ b/src/Explorer.js @@ -1883,25 +1883,29 @@ class FieldView extends React.PureComponent< )} {selection && args.length ? ( -
- {args.map(arg => ( - - ))} -
+ +
{'('}
+
+ {args.map(arg => ( + + ))} +
+
{')'}
+
) : null} );