|
|
|
@ -6,6 +6,7 @@ import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellCo
|
|
|
|
|
import TableRow from 'Components/Table/TableRow';
|
|
|
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
|
|
|
import MovieQuality from 'Movie/MovieQuality';
|
|
|
|
|
import MovieFormats from 'Movie/MovieFormats';
|
|
|
|
|
import MovieLanguage from 'Movie/MovieLanguage';
|
|
|
|
|
import MovieTitleLink from 'Movie/MovieTitleLink';
|
|
|
|
|
import BlacklistDetailsModal from './BlacklistDetailsModal';
|
|
|
|
@ -107,6 +108,16 @@ class BlacklistRow extends Component {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'quality.customFormats') {
|
|
|
|
|
return (
|
|
|
|
|
<TableRowCell key={name}>
|
|
|
|
|
<MovieFormats
|
|
|
|
|
formats={quality.customFormats}
|
|
|
|
|
/>
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'date') {
|
|
|
|
|
return (
|
|
|
|
|
<RelativeDateCellConnector
|
|
|
|
|