Skip to content

Commit

Permalink
fix: Fix empty note without children displays the TOC of home- EXO-74728
Browse files Browse the repository at this point in the history
  • Loading branch information
azayati authored and hakermi committed Oct 17, 2024
1 parent eaf58cc commit eba9a05
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,9 @@ export default {
if (data?.jsonList?.length) {
this.noteChildren = data?.jsonList;
}
else {
this.noteChildren = [];
}
});
},
openNoteChild(item) {
Expand Down

0 comments on commit eba9a05

Please sign in to comment.