-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Entry argument not forwarded to this.props.onResize.
Lines 41 to 46 in 94f0bbf
| onResize = () => { | |
| const { onResize } = this.props; | |
| if (onResize) { | |
| onResize(); | |
| } | |
| }; |
Should be:
onResize = (entry) => {
const { onResize } = this.props;
if (onResize) {
onResize(entry);
}
}; Metadata
Metadata
Assignees
Labels
No labels