mirror of
https://github.com/zadam/trilium.git
synced 2025-01-15 19:51:57 +08:00
close last tab should behave similarly to 0.47, fixes #2298
This commit is contained in:
parent
7e41226549
commit
fc46398a3c
2 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,10 @@ class NoteContext extends Component {
|
|||
}
|
||||
|
||||
setEmpty() {
|
||||
this.notePath = null;
|
||||
this.noteId = null;
|
||||
this.parentNoteId = null;
|
||||
|
||||
this.triggerEvent('noteSwitched', {
|
||||
noteContext: this,
|
||||
notePath: this.notePath
|
||||
|
|
|
@ -305,6 +305,7 @@ export default class TabManager extends Component {
|
|||
const mainNoteContexts = this.getNoteContexts().filter(nc => nc.isMainContext());
|
||||
|
||||
if (mainNoteContexts.length === 1) {
|
||||
mainNoteContexts[0].setEmpty();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue