Skip to content

Commit 31a68c5

Browse files
authored
Linter fix
1 parent 0e0e6df commit 31a68c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/presentation/pages/Note.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ function transformNoteHierarchy(noteHierarchyObj: NoteHierarchy | null, currentN
200200
201201
// Transform the current note into a VerticalMenuItem
202202
return {
203-
title: noteHierarchyObj.noteTitle || 'Untitled',
203+
title: noteHierarchyObj.noteTitle || 'Untitled',
204204
isActive: route.path === `/note/${noteHierarchyObj.noteId}`,
205205
items: noteHierarchyObj.childNotes ? noteHierarchyObj.childNotes.map(child => transformNoteHierarchy(child, currentNoteTitle)) : undefined,
206206
onActivate: () => {

0 commit comments

Comments
 (0)