Completed
Last Updated: 06 Feb 2020 11:03 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
Martin Ivanov
Created on: 27 Jan 2020 13:52
Category: Chat
Type: Bug Report
1
Chat: Missing space between the message group date and author name

This bug is related to the text shown on top of the message groups. The text shows the time + the author's name. For example: "12:30PM,John Doe". 

Add a space between the time and the author's name. It should be "12:30PM, John Doe", instead of "12:30PM,John Doe".

To work this around, add a space before the author's name when you create the Author instance.

this.Chat.AddMessage(new TextMessage(new Author(" John Doe"), "Hi", DateTime.Now.AddDays(-3)));

Or extract the ControlTemplate of MessageGroup and add a Margin to the TextBlock element that shows the Author's name.

 

0 comments