mirror of
https://github.com/zadam/trilium.git
synced 2025-10-31 19:49:01 +01:00
fix (empty tab): recent notes not showing when creating a empty tab
This commit is contained in:
parent
d8e9cad23d
commit
7dd517d8f7
@ -150,6 +150,11 @@ export default class PopupEditorDialog extends Container<BasicWidget> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
handleEventInChildren<T extends EventNames>(name: T, data: EventData<T>): Promise<unknown[] | unknown> | null {
|
handleEventInChildren<T extends EventNames>(name: T, data: EventData<T>): Promise<unknown[] | unknown> | null {
|
||||||
|
// Avoid not showing recent notes when creating a new empty tab.
|
||||||
|
if (name === 'activeContextChanged' && "noteContext" in data && data.noteContext.isEmpty()) {
|
||||||
|
return Promise.resolve();
|
||||||
|
}
|
||||||
|
|
||||||
// Avoid events related to the current tab interfere with our popup.
|
// Avoid events related to the current tab interfere with our popup.
|
||||||
if (["noteSwitched", "noteSwitchedAndActivated", "exportAsPdf", "printActiveNote"].includes(name)) {
|
if (["noteSwitched", "noteSwitchedAndActivated", "exportAsPdf", "printActiveNote"].includes(name)) {
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user