mirror of
https://github.com/zadam/trilium.git
synced 2025-01-16 20:21:43 +08:00
fix
This commit is contained in:
parent
17e2627a34
commit
657d01da95
1 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ export default class NoteTitleWidget extends TabAwareWidget {
|
|||
}
|
||||
|
||||
async showPaths() {
|
||||
const note = this.tabContext.note;
|
||||
const {note, notePath} = this.tabContext;
|
||||
|
||||
if (note.noteId === 'root') {
|
||||
// root doesn't have any parent, but it's still technically 1 path
|
||||
|
@ -175,7 +175,7 @@ export default class NoteTitleWidget extends TabAwareWidget {
|
|||
this.$notePathCount.html(parents.length + " path" + (parents.length > 1 ? "s" : ""));
|
||||
this.$notePathList.empty();
|
||||
|
||||
const pathSegments = this.notePath.split("/");
|
||||
const pathSegments = notePath.split("/");
|
||||
const activeNoteParentNoteId = pathSegments[pathSegments.length - 2]; // we know this is not root so there must be a parent
|
||||
|
||||
for (const parentNote of parents) {
|
||||
|
|
Loading…
Reference in a new issue