|
|
@ -1,10 +1,11 @@
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
import Label from 'Components/Label';
|
|
|
|
import IconButton from 'Components/Link/IconButton';
|
|
|
|
import IconButton from 'Components/Link/IconButton';
|
|
|
|
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
|
|
|
|
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
|
|
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
|
|
import TableRow from 'Components/Table/TableRow';
|
|
|
|
import TableRow from 'Components/Table/TableRow';
|
|
|
|
import { icons } from 'Helpers/Props';
|
|
|
|
import { icons, kinds } from 'Helpers/Props';
|
|
|
|
import CapabilitiesLabel from 'Indexer/Index/Table/CapabilitiesLabel';
|
|
|
|
import CapabilitiesLabel from 'Indexer/Index/Table/CapabilitiesLabel';
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
import HistoryDetailsModal from './Details/HistoryDetailsModal';
|
|
|
|
import HistoryDetailsModal from './Details/HistoryDetailsModal';
|
|
|
@ -225,6 +226,23 @@ class HistoryRow extends Component {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'queryType') {
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
|
|
<TableRowCell
|
|
|
|
|
|
|
|
key={name}
|
|
|
|
|
|
|
|
className={styles.query}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
data.queryType ?
|
|
|
|
|
|
|
|
<Label kind={kinds.INFO}>
|
|
|
|
|
|
|
|
{data.queryType}
|
|
|
|
|
|
|
|
</Label> :
|
|
|
|
|
|
|
|
null
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'categories') {
|
|
|
|
if (name === 'categories') {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<TableRowCell
|
|
|
|
<TableRowCell
|
|
|
|