|
|
|
@ -55,6 +55,7 @@ function SeriesIndexRow(props: SeriesIndexRowProps) {
|
|
|
|
|
const {
|
|
|
|
|
title,
|
|
|
|
|
monitored,
|
|
|
|
|
monitorNewItems,
|
|
|
|
|
status,
|
|
|
|
|
path,
|
|
|
|
|
titleSlug,
|
|
|
|
@ -450,6 +451,16 @@ function SeriesIndexRow(props: SeriesIndexRowProps) {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'monitorNewItems') {
|
|
|
|
|
return (
|
|
|
|
|
<VirtualTableRowCell key={name} className={styles[name]}>
|
|
|
|
|
{monitorNewItems === 'all'
|
|
|
|
|
? translate('SeasonsMonitoredAll')
|
|
|
|
|
: translate('SeasonsMonitoredNone')}
|
|
|
|
|
</VirtualTableRowCell>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name === 'actions') {
|
|
|
|
|
return (
|
|
|
|
|
<VirtualTableRowCell key={name} className={styles[name]}>
|
|
|
|
|