forked from p15670423/monkey
ui: add missing semicolons
This commit is contained in:
parent
11ea5e1a7e
commit
bf6db078a6
|
@ -11,7 +11,7 @@ import {getFullDefinitionByKey, getDefaultPaneParams} from './JsonSchemaHelpers.
|
|||
|
||||
class AdvancedMultiSelect extends React.Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
super(props);
|
||||
|
||||
this.enumOptions = props.options.enumOptions;
|
||||
|
||||
|
@ -37,7 +37,7 @@ class AdvancedMultiSelect extends React.Component {
|
|||
}
|
||||
|
||||
onChildCheckboxClick(value) {
|
||||
let selectValues = this.getSelectValuesAfterClick(value)
|
||||
let selectValues = this.getSelectValuesAfterClick(value);
|
||||
this.props.onChange(selectValues);
|
||||
|
||||
this.setMasterCheckboxState(selectValues);
|
||||
|
|
Loading…
Reference in New Issue