File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -556,7 +556,7 @@ window.ReactDOM["default"] = window.ReactDOM;
556
556
// Manually transfer props
557
557
var props = ( 0 , _libFilter_props_from . filterPropsFrom ) ( this . props ) ;
558
558
559
- return _react [ 'default' ] . DOM . tr ( props , children ) ;
559
+ return _react [ 'default' ] . createElement ( 'tr' , props , children ) ;
560
560
}
561
561
} ] ) ;
562
562
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ var Tr = (function (_React$Component) {
69
69
// Manually transfer props
70
70
var props = ( 0 , _libFilter_props_from . filterPropsFrom ) ( this . props ) ;
71
71
72
- return _react2 [ 'default' ] . DOM . tr ( props , children ) ;
72
+ return _react2 [ 'default' ] . createElement ( 'tr' , props , children ) ;
73
73
}
74
74
} ] ) ;
75
75
Original file line number Diff line number Diff line change @@ -38,10 +38,9 @@ export class Tr extends React.Component {
38
38
// Manually transfer props
39
39
var props = filterPropsFrom ( this . props ) ;
40
40
41
- return React . DOM . tr ( props , children ) ;
41
+ return React . createElement ( 'tr' , props , children ) ;
42
42
}
43
43
} ;
44
44
45
45
Tr . childNode = Td ;
46
46
Tr . dataType = 'object' ;
47
-
You can’t perform that action at this time.
0 commit comments