From 5d8d617dee03e9a166b3b2c7ec933ade518163f2 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 31 May 2018 11:06:51 +0200 Subject: [PATCH] Show text cursor --- xray_ui/lib/text_editor/text_editor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xray_ui/lib/text_editor/text_editor.js b/xray_ui/lib/text_editor/text_editor.js index 0c6b3a8b..95ae9a75 100644 --- a/xray_ui/lib/text_editor/text_editor.js +++ b/xray_ui/lib/text_editor/text_editor.js @@ -13,7 +13,8 @@ const CURSOR_BLINK_PERIOD = 800; const Root = styled("div", { width: "100%", height: "100%", - overflow: "hidden" + overflow: "hidden", + cursor: "text" }); class TextEditor extends React.Component {