AG-538 Upgrade to React 15x

AG-539 React rich grid example - fix bugs
This commit is contained in:
Sean Landsman
2017-06-13 18:15:05 +01:00
parent a4dbbf529d
commit 675cbe497c
13 changed files with 98 additions and 77 deletions

View File

@@ -31,11 +31,11 @@ export default class SkillsFilter extends React.Component {
setModel(model) {
this.setState({
android: model.android,
css: model.css,
html5: model.html5,
mac: model.mac,
windows: model.windows
android: model ? model.android : null,
css: model ? model.css : null,
html5: model ? model.html5 : null,
mac: model ? model.mac : null,
windows: model ? model.windows : null
});
}