1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Mobile: Removed arrow icon as it is rendered weirdly on device

This commit is contained in:
Laurent Cozic 2019-06-26 18:51:12 +01:00
parent 6e143aef5c
commit f985cfa25c

View File

@ -229,7 +229,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
}
if (section.name === 'sync') {
settingComps.push(this.renderButton('e2ee_config_button', _('Encryption Config') + ' ▶', this.e2eeConfig_));
settingComps.push(this.renderButton('e2ee_config_button', _('Encryption Config'), this.e2eeConfig_));
}
const headerWrapperStyle = this.styles().headerWrapperStyle;
@ -332,10 +332,10 @@ class ConfigScreenComponent extends BaseScreenComponent {
const settingComps = shared.settingsToComponents2(this, 'mobile', settings);
settingComps.push(this.renderHeader('moreInfo', _('Tools')));
settingComps.push(this.renderHeader('tools', _('Tools')));
settingComps.push(this.renderButton('status_button', _('Sync Status') + ' ▶', this.syncStatusButtonPress_));
settingComps.push(this.renderButton('log_button', _('Log') + ' ▶', this.logButtonPress_));
settingComps.push(this.renderButton('status_button', _('Sync Status'), this.syncStatusButtonPress_));
settingComps.push(this.renderButton('log_button', _('Log'), this.logButtonPress_));
settingComps.push(this.renderButton('export_report_button', this.state.creatingReport ? _('Creating report...') : _('Export Debug Report'), this.exportDebugButtonPress_, { disabled: this.state.creatingReport }));
settingComps.push(this.renderHeader('moreInfo', _('More information')));