errrrr fix
This commit is contained in:
parent
1a18ae9dbc
commit
23e85d2345
|
@ -11,13 +11,11 @@ import Probe from '@overflow/probe/api/model/Probe';
|
|||
|
||||
export interface Props {
|
||||
probe: Probe;
|
||||
onBack?(): void;
|
||||
}
|
||||
|
||||
export interface State {
|
||||
}
|
||||
|
||||
|
||||
export class ProbeDetails extends React.Component<Props, State> {
|
||||
|
||||
constructor(props: Props, context: State) {
|
||||
|
@ -56,11 +54,6 @@ export class ProbeBasicInfo extends React.Component<Props, State> {
|
|||
alert('Discovery');
|
||||
}
|
||||
|
||||
public handleBack(event: any, data: any): void {
|
||||
this.props.onBack();
|
||||
}
|
||||
|
||||
|
||||
public showStartStopBtn(): JSX.Element {
|
||||
let temp: any = null;
|
||||
temp = this.props.probe;
|
||||
|
@ -116,7 +109,6 @@ export class ProbeBasicInfo extends React.Component<Props, State> {
|
|||
</Table.Body>
|
||||
</Table>
|
||||
|
||||
<Button content='List' icon='list' labelPosition='left' onClick={this.handleBack.bind(this)} />
|
||||
<Button content='Discovery' icon='search' labelPosition='left' floated={'right'} positive onClick={this.handleDiscovery} />
|
||||
{this.showStartStopBtn()}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ export interface Props {
|
|||
}
|
||||
|
||||
export interface State {
|
||||
selected: object;
|
||||
selected: Probe;
|
||||
isDetail: boolean;
|
||||
list: Probe[];
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ export class Probes extends React.Component<Props, State> {
|
|||
return false;
|
||||
}
|
||||
|
||||
public handleSelect(selectedProbe: object): void {
|
||||
public handleSelect(selectedProbe: any): void {
|
||||
this.setState({
|
||||
selected: selectedProbe,
|
||||
isDetail: true,
|
||||
|
@ -121,7 +121,7 @@ export class Probes extends React.Component<Props, State> {
|
|||
|
||||
public render(): JSX.Element {
|
||||
if (this.state.isDetail) {
|
||||
return <ProbeDetails probe={this.state.selected} onBack={() => this.setState({ isDetail: false })} />;
|
||||
return <ProbeDetails probe={this.state.selected} />;
|
||||
}
|
||||
let probeList =
|
||||
<Container fluid>
|
||||
|
|
Loading…
Reference in New Issue
Block a user