Alex krasn/fix model info enclosing element error on #407 (#408)

* fix: add fragment

* fix: deletes unnecessary whitespaces
This commit is contained in:
alex-krasn 2020-07-13 10:22:39 -07:00 коммит произвёл GitHub
Родитель 030b922d84
Коммит 8cc421c3fe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -15,31 +15,31 @@ export interface ITrainRecordProps {
};
}
export interface ITrainRecordState {}
export interface ITrainRecordState { }
export default class TrainRecord extends React.Component<ITrainRecordProps, ITrainRecordState> {
public render() {
return (
<aside className="mt-3">
<h5> Model information </h5>
<h5>Model information</h5>
<div>
<h6> Model ID: </h6>
<h6>Model ID:</h6>
<p>
{this.props.modelInfo.modelId}
</p>
{this.props.modelInfo.modelName &&
[
<h6> Model Name: </h6>,
<>
<h6>Model Name:</h6>
<p>
{this.props.modelInfo.modelName}
</p>
]
</>
}
<h6> Created date and time: </h6>
<h6>Created date and time:</h6>
<p>
{new Date(this.props.modelInfo.createdDateTime).toLocaleString()}
</p>
<h6> Average accuracy: </h6>
<h6>Average accuracy:</h6>
<p>
{(this.props.averageAccuracy * 100).toFixed(2) + "%"}
</p>