Skip to content

Commit 1a08807

Browse files
committed
fix large messages
1 parent 49894b8 commit 1a08807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/common/Editor/Editor.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const Editor = React.forwardRef<AceEditor | null, EditorProps>((props, ref) => {
3131
? `${(props.value?.split('\n').length || 32) * 19}px`
3232
: '372px'
3333
}
34-
wrapEnabled
34+
wrapEnabled={false}
3535
{...rest}
3636
/>
3737
);

0 commit comments

Comments
 (0)