Fix Widget event notification text including spurious space

pull/21833/head
Michael Telatynski 2020-11-24 11:27:02 +00:00
parent 2144932bbc
commit 6d737fe6c4
1 changed files with 1 additions and 1 deletions

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