1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-07-02 19:15:22 +00:00
INIT_ALL, NOTE_MOVE, NOTE_UPDATE(create/update) done
This commit is contained in:
Dick Choi
2016-08-30 02:33:28 +09:00
parent ba374e08ff
commit aefb84df3b
13 changed files with 449 additions and 152 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ class NoteItem extends React.Component {
? 'root--active'
: 'root'
}
key={note.uniqueKey}
key={note.storage + '-' + note.key}
onClick={(e) => this.handleClick(e)}
>
<div styleName='border'/>
+1 -1
View File
@@ -64,7 +64,7 @@ class NoteList extends React.Component {
return (
<NoteItem
note={note}
key={`${note.storage}-${note.folder}-${note.key}`}
key={`${note.storage}-${note.key}`}
storage={storage}
folder={folder}
isActive={index === _index}