From 75fb29c594ede023b7f1573f01626fd55d7805ad Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Sat, 8 Jul 2017 15:44:20 +0900 Subject: [PATCH] Change == to === --- browser/main/NoteList/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js index 1ca82d4e..833c276c 100644 --- a/browser/main/NoteList/index.js +++ b/browser/main/NoteList/index.js @@ -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 }