Merge pull request #1316 from matrix-org/luke/fix-app-name-case
Don't apply case logic to app names
This commit is contained in:
commit
bf07333915
2 changed files with 1 additions and 5 deletions
|
@ -252,10 +252,7 @@ function textForWidgetEvent(event) {
|
||||||
const senderName = event.sender ? event.sender.name : event.getSender();
|
const senderName = event.sender ? event.sender.name : event.getSender();
|
||||||
const previousContent = event.getPrevContent() || {};
|
const previousContent = event.getPrevContent() || {};
|
||||||
const {name, type, url} = event.getContent() || {};
|
const {name, type, url} = event.getContent() || {};
|
||||||
let widgetName = widgetName || name || type || previousContent.type || '';
|
const widgetName = widgetName || name || type || previousContent.type || '';
|
||||||
|
|
||||||
// Apply sentence case
|
|
||||||
widgetName = widgetName ? widgetName[0].toUpperCase() + widgetName.slice(1).toLowerCase() + ' ' : '';
|
|
||||||
|
|
||||||
// If the widget was removed, its content should be {}, but this is sufficiently
|
// If the widget was removed, its content should be {}, but this is sufficiently
|
||||||
// equivalent to that condition.
|
// equivalent to that condition.
|
||||||
|
|
|
@ -183,7 +183,6 @@ export default React.createClass({
|
||||||
let appTileName = "No name";
|
let appTileName = "No name";
|
||||||
if(this.props.name && this.props.name.trim()) {
|
if(this.props.name && this.props.name.trim()) {
|
||||||
appTileName = this.props.name.trim();
|
appTileName = this.props.name.trim();
|
||||||
appTileName = appTileName[0].toUpperCase() + appTileName.slice(1).toLowerCase();
|
|
||||||
}
|
}
|
||||||
return appTileName;
|
return appTileName;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue