|
|
|
@ -9,7 +9,6 @@ import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellCo
|
|
|
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
|
|
|
import TableRow from 'Components/Table/TableRow';
|
|
|
|
|
import Popover from 'Components/Tooltip/Popover';
|
|
|
|
|
import Tooltip from 'Components/Tooltip/Tooltip';
|
|
|
|
|
import EpisodeFormats from 'Episode/EpisodeFormats';
|
|
|
|
|
import EpisodeLanguages from 'Episode/EpisodeLanguages';
|
|
|
|
|
import EpisodeQuality from 'Episode/EpisodeQuality';
|
|
|
|
@ -102,11 +101,19 @@ class EpisodeHistoryRow extends Component {
|
|
|
|
|
/>
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell>
|
|
|
|
|
<EpisodeFormats formats={customFormats} />
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell>
|
|
|
|
|
{formatCustomFormatScore(customFormatScore, customFormats.length)}
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<RelativeDateCellConnector
|
|
|
|
|
date={date}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.details}>
|
|
|
|
|
<TableRowCell className={styles.actions}>
|
|
|
|
|
<Popover
|
|
|
|
|
anchor={
|
|
|
|
|
<Icon
|
|
|
|
@ -124,24 +131,13 @@ class EpisodeHistoryRow extends Component {
|
|
|
|
|
}
|
|
|
|
|
position={tooltipPositions.LEFT}
|
|
|
|
|
/>
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.customFormatScore}>
|
|
|
|
|
<Tooltip
|
|
|
|
|
anchor={
|
|
|
|
|
formatCustomFormatScore(customFormatScore, customFormats.length)
|
|
|
|
|
}
|
|
|
|
|
tooltip={<EpisodeFormats formats={customFormats} />}
|
|
|
|
|
position={tooltipPositions.BOTTOM}
|
|
|
|
|
/>
|
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
|
|
<TableRowCell className={styles.actions}>
|
|
|
|
|
{
|
|
|
|
|
eventType === 'grabbed' &&
|
|
|
|
|
<IconButton
|
|
|
|
|
title={translate('MarkAsFailed')}
|
|
|
|
|
name={icons.REMOVE}
|
|
|
|
|
size={14}
|
|
|
|
|
onPress={this.onMarkAsFailedPress}
|
|
|
|
|
/>
|
|
|
|
|
}
|
|
|
|
|