Merge pull request #5441 from matrix-org/t3chguy/fix/15796

Fix Widget event notification text including spurious space
This commit is contained in:
Michael Telatynski 2020-11-24 15:56:12 +00:00 committed by GitHub
commit f70f957c49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -455,7 +455,7 @@ function textForWidgetEvent(event) {
let widgetName = name || prevName || type || prevType || '';
// Apply sentence case to widget name
if (widgetName && widgetName.length > 0) {
widgetName = widgetName[0].toUpperCase() + widgetName.slice(1) + ' ';
widgetName = widgetName[0].toUpperCase() + widgetName.slice(1);
}
// If the widget was removed, its content should be {}, but this is sufficiently