1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Change == to ===

This commit is contained in:
asmsuechan
2017-07-08 15:44:20 +09:00
parent bd75f7fd2c
commit 75fb29c594

View File

@@ -184,7 +184,7 @@ class NoteList extends React.Component {
jumpNoteByHashHandler (event, noteHash) {
// first argument event isn't used.
if (this.notes == null || this.notes.length === 0) {
if (this.notes === null || this.notes.length === 0) {
return
}