1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Fix == to ===

This commit is contained in:
asmsuechan
2017-03-18 23:44:43 -07:00
parent 31c04de7b6
commit 525ab900bd

View File

@@ -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