I didn't read carefully enough the code I was replacing with a
function call. It had an extra space at the end of the date format
string.
let mut full_para = Paragraph::new().set_indent(0, 2);
let datestr = format_date(self.timestamp);
full_para.push_text(&ColouredString::uniform(&datestr, ' '), false);
+ full_para.end_word();
// FIXME: highlight account_desc if active
full_para.push_text(
&ColouredString::uniform(&self.account_desc, ' '), false);