|
|
@ -71,6 +71,7 @@ class MovieIndexRow extends Component {
|
|
|
|
added,
|
|
|
|
added,
|
|
|
|
inCinemas,
|
|
|
|
inCinemas,
|
|
|
|
physicalRelease,
|
|
|
|
physicalRelease,
|
|
|
|
|
|
|
|
runtime,
|
|
|
|
minimumAvailability,
|
|
|
|
minimumAvailability,
|
|
|
|
path,
|
|
|
|
path,
|
|
|
|
sizeOnDisk,
|
|
|
|
sizeOnDisk,
|
|
|
@ -212,6 +213,17 @@ class MovieIndexRow extends Component {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'runtime') {
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
|
|
<VirtualTableRowCell
|
|
|
|
|
|
|
|
key={name}
|
|
|
|
|
|
|
|
className={styles[name]}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
{runtime} Minutes
|
|
|
|
|
|
|
|
</VirtualTableRowCell>
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (name === 'minimumAvailability') {
|
|
|
|
if (name === 'minimumAvailability') {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<VirtualTableRowCell
|
|
|
|
<VirtualTableRowCell
|
|
|
@ -376,6 +388,7 @@ MovieIndexRow.propTypes = {
|
|
|
|
added: PropTypes.string,
|
|
|
|
added: PropTypes.string,
|
|
|
|
inCinemas: PropTypes.string,
|
|
|
|
inCinemas: PropTypes.string,
|
|
|
|
physicalRelease: PropTypes.string,
|
|
|
|
physicalRelease: PropTypes.string,
|
|
|
|
|
|
|
|
runtime: PropTypes.number,
|
|
|
|
minimumAvailability: PropTypes.string.isRequired,
|
|
|
|
minimumAvailability: PropTypes.string.isRequired,
|
|
|
|
path: PropTypes.string.isRequired,
|
|
|
|
path: PropTypes.string.isRequired,
|
|
|
|
sizeOnDisk: PropTypes.number.isRequired,
|
|
|
|
sizeOnDisk: PropTypes.number.isRequired,
|
|
|
|