Merge pull request #1318 from matrix-org/luke/fix-widget-event-name

Add a space between widget name and "widget" in widget event tiles
This commit is contained in:
Luke Barnard
2017-08-18 16:09:20 +01:00
committed by GitHub
+2 -1
View File
@@ -252,7 +252,8 @@ function textForWidgetEvent(event) {
const senderName = event.sender ? event.sender.name : event.getSender();
const previousContent = event.getPrevContent() || {};
const {name, type, url} = event.getContent() || {};
const widgetName = widgetName || name || type || previousContent.type || '';
let widgetName = widgetName || name || type || previousContent.type;
widgetName = widgetName ? widgetName + ' ' : '';
// If the widget was removed, its content should be {}, but this is sufficiently
// equivalent to that condition.