This commit is contained in:
parent
8cc7752cea
commit
da0afd39a8
1 changed files with 6 additions and 2 deletions
|
@ -256,7 +256,11 @@ const pushPluginDock = (app: App, dockItem: IDockTab[], position: TPluginDockPos
|
|||
});
|
||||
}
|
||||
});
|
||||
dockItem.forEach(existSubItem => {
|
||||
dockItem.forEach((existSubItem, index) => {
|
||||
if (!["file", "outline", "inbox", "bookmark", "tag", "graph", "globalGraph", "backlink"].includes(existSubItem.type)) {
|
||||
dockItem.splice(index, 1);
|
||||
return;
|
||||
}
|
||||
if (existSubItem.hotkeyLangId) {
|
||||
existSubItem.title = window.siyuan.languages[existSubItem.hotkeyLangId];
|
||||
existSubItem.hotkey = window.siyuan.config.keymap.general[existSubItem.hotkeyLangId].custom;
|
||||
|
@ -944,7 +948,7 @@ export const newCenterEmptyTab = (app: App) => {
|
|||
let target = event.target as HTMLElement;
|
||||
while (target && !target.isEqualNode(tab.panelElement)) {
|
||||
if (target.id === "editorEmptySearch") {
|
||||
openSearch( {
|
||||
openSearch({
|
||||
app,
|
||||
hotkey: window.siyuan.config.keymap.general.globalSearch.custom,
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue