diff --git a/app/scripts/views/list-search-view.js b/app/scripts/views/list-search-view.js index b12dafff..46cc7a3f 100644 --- a/app/scripts/views/list-search-view.js +++ b/app/scripts/views/list-search-view.js @@ -137,15 +137,15 @@ class ListSearchView extends View { this.sortOptions.forEach(opt => { opt.html = opt.loc(); }); - const entryDesc = Features.isMobile - ? '' - : ' (' + - Locale.searchShiftClickOr + - ' ' + - Shortcuts.altShortcutSymbol(true) + - 'N)'; this.createOptions = [ - { value: 'entry', icon: 'key', html: StringFormat.capFirst(Locale.entry) + entryDesc }, + { + value: 'entry', + icon: 'key', + text: StringFormat.capFirst(Locale.entry), + hint: Features.isMobile + ? null + : `(${Locale.searchShiftClickOr} ${Shortcuts.altShortcutSymbol(true)})` + }, { value: 'group', icon: 'folder', text: StringFormat.capFirst(Locale.group) } ]; if (this.el) { diff --git a/app/templates/dropdown.hbs b/app/templates/dropdown.hbs index b7577b21..d2581f67 100644 --- a/app/templates/dropdown.hbs +++ b/app/templates/dropdown.hbs @@ -3,10 +3,9 @@