mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
fix(launcher): clarify quick search (closes #1680)
This commit is contained in:
parent
7b297a5ed7
commit
7fba2dfb8b
@ -10,6 +10,7 @@
|
|||||||
* [Unable to add internal link on mobile version](https://github.com/TriliumNext/Notes/issues/1677)
|
* [Unable to add internal link on mobile version](https://github.com/TriliumNext/Notes/issues/1677)
|
||||||
* Note tree not closing when selecting some of the menu actions.
|
* Note tree not closing when selecting some of the menu actions.
|
||||||
* [Most tree context menu on mobile are broken](https://github.com/TriliumNext/Notes/issues/671)
|
* [Most tree context menu on mobile are broken](https://github.com/TriliumNext/Notes/issues/671)
|
||||||
|
* [Quick search launch bar item does nothing in vertical layout](https://github.com/TriliumNext/Notes/issues/1680)
|
||||||
|
|
||||||
## ✨ Improvements
|
## ✨ Improvements
|
||||||
|
|
||||||
|
2
src/public/app/doc_notes/en/launchbar_quick_search.html
Normal file
2
src/public/app/doc_notes/en/launchbar_quick_search.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<p>The <a href="#root/_help_Ms1nauBra7gq" target="_blank">quick search bar</a> is displayed only on the horizontal layout, since it is already visible by default in the vertical layout.</p>
|
||||||
|
<p>For more information, see <a href="#root/_help_x0JgW8UqGXvq" target="_blank">Vertical and horizontal layout</a>.</p>
|
@ -74,7 +74,14 @@ export default function buildLaunchBarConfig() {
|
|||||||
{ id: "_lbBookmarks", title: t("hidden-subtree.bookmarks-title"), type: "launcher", builtinWidget: "bookmarks", icon: "bx bx-bookmark" },
|
{ id: "_lbBookmarks", title: t("hidden-subtree.bookmarks-title"), type: "launcher", builtinWidget: "bookmarks", icon: "bx bx-bookmark" },
|
||||||
{ id: "_lbToday", ...sharedLaunchers.openToday },
|
{ id: "_lbToday", ...sharedLaunchers.openToday },
|
||||||
{ id: "_lbSpacer2", title: t("hidden-subtree.spacer-title"), type: "launcher", builtinWidget: "spacer", baseSize: "0", growthFactor: "1" },
|
{ id: "_lbSpacer2", title: t("hidden-subtree.spacer-title"), type: "launcher", builtinWidget: "spacer", baseSize: "0", growthFactor: "1" },
|
||||||
{ id: "_lbQuickSearch", title: t("hidden-subtree.quick-search-title"), type: "launcher", builtinWidget: "quickSearch", icon: "bx bx-rectangle" },
|
{
|
||||||
|
id: "_lbQuickSearch",
|
||||||
|
title: t("hidden-subtree.quick-search-title"),
|
||||||
|
type: "launcher",
|
||||||
|
builtinWidget: "quickSearch",
|
||||||
|
icon: "bx bx-rectangle",
|
||||||
|
attributes: [{ type: "label", name: "docName", value: "launchbar_quick_search" }]
|
||||||
|
},
|
||||||
{ id: "_lbProtectedSession", title: t("hidden-subtree.protected-session-title"), type: "launcher", builtinWidget: "protectedSession", icon: "bx bx bx-shield-quarter" },
|
{ id: "_lbProtectedSession", title: t("hidden-subtree.protected-session-title"), type: "launcher", builtinWidget: "protectedSession", icon: "bx bx bx-shield-quarter" },
|
||||||
{ id: "_lbSyncStatus", title: t("hidden-subtree.sync-status-title"), type: "launcher", builtinWidget: "syncStatus", icon: "bx bx-wifi" },
|
{ id: "_lbSyncStatus", title: t("hidden-subtree.sync-status-title"), type: "launcher", builtinWidget: "syncStatus", icon: "bx bx-wifi" },
|
||||||
{ id: "_lbSettings", title: t("hidden-subtree.settings-title"), type: "launcher", command: "showOptions", icon: "bx bx-cog" }
|
{ id: "_lbSettings", title: t("hidden-subtree.settings-title"), type: "launcher", command: "showOptions", icon: "bx bx-cog" }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user