From 1b2858adf0ef83a60c14f078ba98f2407081c853 Mon Sep 17 00:00:00 2001 From: alencarlucas Date: Mon, 12 Aug 2019 11:25:38 -0300 Subject: [PATCH] feat: String editor resizable --- src/dashboard/Data/Browser/Editor.react.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dashboard/Data/Browser/Editor.react.js b/src/dashboard/Data/Browser/Editor.react.js index 3eb806402d..d2a61a19bd 100644 --- a/src/dashboard/Data/Browser/Editor.react.js +++ b/src/dashboard/Data/Browser/Editor.react.js @@ -24,7 +24,8 @@ let Editor = ({ top, left, type, targetClass, value, readonly, width, onCommit } readonly={readonly} multiline={!readonly} width={width} - onCommit={onCommit} /> + onCommit={onCommit} + resizable={true} /> ); } else if (type === 'Array' || type === 'Object') { let encodeCommit = (json) => {