simple
This commit is contained in:
parent
763ef41384
commit
6d2e01fa2d
|
@ -34,10 +34,6 @@ class SensorDetailLayout extends React.Component<Props, State> {
|
|||
'name': 'Items',
|
||||
'path': '/items',
|
||||
},
|
||||
{
|
||||
'name': 'Setup',
|
||||
'path': '/setup',
|
||||
},
|
||||
{
|
||||
'name': 'History',
|
||||
'path': '/history',
|
||||
|
@ -55,9 +51,6 @@ class SensorDetailLayout extends React.Component<Props, State> {
|
|||
<Route exact={true} path={`${this.props.match.url}/:id/`} component={SensorDetailInfo} />
|
||||
<Route exact={true} path={`${this.props.match.url}/:id/info`} component={SensorDetailInfo} />
|
||||
<Route exact={true} path={`${this.props.match.url}/:id/items`} component={SensorDetailItems} />
|
||||
{/*<Route path={`${this.props.match.url}/:id/history/`} component={EmailConfirm}/>*/}
|
||||
<Route exact={true} path={`${this.props.match.url}/:id/setup`} component={SensorSetup} />
|
||||
<Route exact={true} path={`${this.props.match.url}/setup`} component={SensorSetup} />
|
||||
<Route exact={true} path={`${this.props.match.url}/:id/tree`} component={SensorItemTree} />
|
||||
<Route exact={true} path={`${this.props.match.url}/:id/history`} component={HistoryView} />
|
||||
</Switch>
|
||||
|
|
|
@ -105,11 +105,11 @@ export class SensorConfigTargetSelect extends React.Component<Props, State> {
|
|||
selectionOptions.push(this.createOption(this.props.infra));
|
||||
this.selectOptions = selectionOptions;
|
||||
|
||||
let sd = this.props.getSensor();
|
||||
// let sd = this.props.getSensor();
|
||||
// sd.targetId = this.props.infra.target.id;
|
||||
// sd.type = this.props.infra.infraType.name;
|
||||
sd.infra = this.props.infra;
|
||||
this.props.setSensor(sd);
|
||||
// sd.infra = this.props.infra;
|
||||
// this.props.setSensor(sd);
|
||||
}
|
||||
|
||||
public createOption(infra: Infra): DropdownItemProps {
|
||||
|
@ -148,7 +148,8 @@ export class SensorConfigTargetSelect extends React.Component<Props, State> {
|
|||
}
|
||||
|
||||
return (<Dropdown
|
||||
placeholder='Select Target' selection options={this.selectOptions} defaultValue={this.defaultValue()}
|
||||
placeholder='Select Target' selection options={this.selectOptions}
|
||||
// defaultValue={this.defaultValue()}
|
||||
onChange={this.onChangeTarget.bind(this)} />);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user