1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Various fixes

This commit is contained in:
Laurent Cozic
2017-07-24 22:52:30 +01:00
parent 2685120ecd
commit 53d305eb2e
5 changed files with 38 additions and 23 deletions

View File

@ -243,7 +243,7 @@ class ScreenHeaderComponent extends Component {
</Picker>
);
} else {
let title = 'title' in this.props && this.props.title !== null ? this.props.title : _(this.props.navState.routeName);
let title = 'title' in this.props && this.props.title !== null ? this.props.title : '';
return <Text style={styles.titleText}>{title}</Text>
}
}