mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
Fix == to ===
This commit is contained in:
@@ -333,7 +333,7 @@ class NoteList extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
jumpToTop() {
|
jumpToTop() {
|
||||||
if (this.notes == null || this.notes.length === 0) {
|
if (this.notes === null || this.notes.length === 0) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let { router } = this.context
|
let { router } = this.context
|
||||||
|
|||||||
Reference in New Issue
Block a user