|
@@ -12,8 +12,10 @@ export default class OutputNodeInfo extends React.Component<any, any> {
|
|
|
|
|
|
async componentDidMount(){
|
|
|
this.props.nodeInfo.outputSource = [
|
|
|
- {dataField: 'name', dataType: 'string'},
|
|
|
- {dataField: 'address', dataType: 'string'},
|
|
|
+ {dataField: 'uuid', dataType: 'string'},
|
|
|
+ {dataField: 'label', dataType: 'int'},
|
|
|
+ {dataField: 'prediction', dataType: 'double'},
|
|
|
+ {dataField: 'probability_xj', dataType: 'double'},
|
|
|
];
|
|
|
(this.formRef.current as any).setFieldsValue({
|
|
|
outputSource: this.props.nodeInfo.outputSource
|