1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

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:
Luke Barnard
2017-08-18 15:08:40 +01:00
committed by GitHub
2 changed files with 1 additions and 5 deletions

View File

@@ -183,7 +183,6 @@ export default React.createClass({
let appTileName = "No name";
if(this.props.name && this.props.name.trim()) {
appTileName = this.props.name.trim();
appTileName = appTileName[0].toUpperCase() + appTileName.slice(1).toLowerCase();
}
return appTileName;
},