|
|
|
@ -16,6 +16,7 @@ function CutoffUnmetRow(props) {
|
|
|
|
|
releaseDate,
|
|
|
|
|
titleSlug,
|
|
|
|
|
title,
|
|
|
|
|
lastSearchTime,
|
|
|
|
|
disambiguation,
|
|
|
|
|
isSelected,
|
|
|
|
|
columns,
|
|
|
|
@ -68,6 +69,15 @@ function CutoffUnmetRow(props) {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'books.lastSearchTime') {
|
|
|
|
|
return (
|
|
|
|
|
<RelativeDateCellConnector
|
|
|
|
|
key={name}
|
|
|
|
|
date={lastSearchTime}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'releaseDate') {
|
|
|
|
|
return (
|
|
|
|
|
<RelativeDateCellConnector
|
|
|
|
@ -105,6 +115,7 @@ CutoffUnmetRow.propTypes = {
|
|
|
|
|
releaseDate: PropTypes.string.isRequired,
|
|
|
|
|
titleSlug: PropTypes.string.isRequired,
|
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
|
lastSearchTime: PropTypes.string,
|
|
|
|
|
disambiguation: PropTypes.string,
|
|
|
|
|
isSelected: PropTypes.bool,
|
|
|
|
|
columns: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
|