diff --git a/ElectronClient/app/gui/MainScreen.jsx b/ElectronClient/app/gui/MainScreen.jsx index e485e402ea7..9ccbad2c6f3 100644 --- a/ElectronClient/app/gui/MainScreen.jsx +++ b/ElectronClient/app/gui/MainScreen.jsx @@ -392,7 +392,7 @@ class MainScreenComponent extends React.Component { headerItems.push({ title: _('New notebook'), - iconName: 'fa-folder-o', + iconName: 'fa-book', onClick: () => { this.doCommand({ name: 'newNotebook' }) }, }); diff --git a/ElectronClient/app/gui/NoteText.jsx b/ElectronClient/app/gui/NoteText.jsx index c2c21afb8b1..ed9fbceae0a 100644 --- a/ElectronClient/app/gui/NoteText.jsx +++ b/ElectronClient/app/gui/NoteText.jsx @@ -1373,7 +1373,7 @@ class NoteTextComponent extends React.Component { if (note && this.state.folder && ['Search', 'Tag'].includes(this.props.notesParentType)) { toolbarItems.push({ title: _('In: %s', this.state.folder.title), - iconName: 'fa-folder-o', + iconName: 'fa-book', enabled: false, }); }