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 Dec 19, 2024
1 parent 996fd95 commit 6fb3f7e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,9 @@ export default {
if (data?.jsonList?.length) {
this.noteChildren = data?.jsonList;
}
else {
this.noteChildren = [];
}
});
},
openNoteChild(item) {
Expand Down

0 comments on commit 6fb3f7e

Please sign in to comment.