@ -21,6 +21,7 @@ function HistoryDetails(props) {
limit,
offset,
source,
host,
url
} = data;
@ -86,6 +87,15 @@ function HistoryDetails(props) {
null
}
{
data ?
<DescriptionListItem
title={translate('Host')}
data={host}
/> :
@ -331,6 +331,21 @@ class HistoryRow extends Component {
);
if (name === 'host') {
return (
<TableRowCell
key={name}
className={styles.indexer}
>
data.host ?
data.host :
</TableRowCell>
if (name === 'elapsedTime') {
@ -82,6 +82,12 @@ export const defaultState = {
isSortable: false,
isVisible: false
},
name: 'host',
label: () => translate('Host'),
name: 'elapsedTime',
label: () => translate('ElapsedTime'),