diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index 7bb3d4e5..b3267d05 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -333,7 +333,7 @@ class NoteList extends React.Component { } jumpToTop() { - if (this.notes == null || this.notes.length === 0) { + if (this.notes === null || this.notes.length === 0) { return } let { router } = this.context