mirror of https://github.com/vector-im/riot-web
fix getDefaultProps mixup
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
4c3f811050
commit
71a12b6bbb
|
@ -155,9 +155,11 @@ module.exports = withMatrixClient(React.createClass({
|
|||
isTwelveHour: PropTypes.bool,
|
||||
},
|
||||
|
||||
defaultProps: {
|
||||
// no-op function because onWidgetLoad is optional yet some subcomponents assume its existence
|
||||
getDefaultProps: function() {
|
||||
return {
|
||||
// no-op function because onWidgetLoad is optional yet some sub-components assume its existence
|
||||
onWidgetLoad: function() {},
|
||||
};
|
||||
},
|
||||
|
||||
getInitialState: function() {
|
||||
|
|
Loading…
Reference in New Issue