File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ class App extends Component {
449
449
< NoteList
450
450
key = { note . noteid }
451
451
note = { note }
452
- handleClick = { this . handleNoteListItemClick }
452
+ handleNoteListItemClick = { this . handleNoteListItemClick }
453
453
handleMouseOver = { this . handleNoteListItemMouseOver }
454
454
handleMouseOut = { this . handleNoteListItemMouseOut }
455
455
/>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ function NoteList(props) {
9
9
< li
10
10
className = { ListItemClasses }
11
11
id = { note . noteid }
12
- onClick = { ( e ) => props . handleClick ( e , note ) }
12
+ onClick = { ( e ) => props . handleNoteListItemClick ( e , note ) }
13
13
onMouseOver = { ( e ) => props . handleMouseOver ( e , note ) }
14
14
onMouseOut = { ( e ) => props . handleMouseOut ( e ) }
15
15
>
You can’t perform that action at this time.
0 commit comments