Skip to content
This repository was archived by the owner on Oct 24, 2019. It is now read-only.

Commit 8c9d863

Browse files
committed
Merge branch 'master' into production
2 parents 53cc683 + f71c4a7 commit 8c9d863

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toast-ui/react-grid",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "TOAST UI Grid for React",
55
"main": "dist/toastui-react-grid.js",
66
"files": [
@@ -53,6 +53,6 @@
5353
"xhr-mock": "^2.4.1"
5454
},
5555
"dependencies": {
56-
"tui-grid": "^4.0.0"
56+
"tui-grid": "^4.3.0"
5757
}
5858
}

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default class Grid extends React.Component {
1515

1616
bindEventHandlers(props, prevProps) {
1717
Object.keys(props)
18-
.filter(key => /on[A-Z][a-zA-Z]+/.test(key))
18+
.filter(key => /on(?!Grid)[A-Z][a-zA-Z]+/.test(key))
1919
.forEach(key => {
2020
const eventName = key[2].toLowerCase() + key.slice(3);
2121
// For <Grid onFocus={condition ? onFocus1 : onFocus2} />

0 commit comments

Comments
 (0)