From 37cb19756c627331e3c556e083eefc83e85bf8cf Mon Sep 17 00:00:00 2001 From: Alberto Date: Mon, 26 Dec 2022 16:50:42 +0100 Subject: [PATCH] style cursor correctly for splits --- src/components/ReportActionItem/IOUQuote.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/ReportActionItem/IOUQuote.js b/src/components/ReportActionItem/IOUQuote.js index e59093a95ae..11544cbc60d 100644 --- a/src/components/ReportActionItem/IOUQuote.js +++ b/src/components/ReportActionItem/IOUQuote.js @@ -49,7 +49,10 @@ const IOUQuote = props => ( {/* Get first word of IOU message */} {Str.htmlDecode(fragment.text.split(' ')[0])} - + {/* Get remainder of IOU message */} {Str.htmlDecode(fragment.text.substring(fragment.text.indexOf(' ')))}