New: Release title column in queue

pull/3019/head
Mark McDowall 6 years ago
parent 81d3f35034
commit b63cbbdaaa

@ -252,6 +252,14 @@ class QueueRow extends Component {
);
}
if (name === 'title') {
return (
<TableRowCell key={name}>
{title}
</TableRowCell>
);
}
if (name === 'estimatedCompletionTime') {
return (
<TimeleftCell

@ -115,6 +115,12 @@ export const defaultState = {
isSortable: true,
isVisible: false
},
{
name: 'title',
label: 'Release Title',
isSortable: true,
isVisible: false
},
{
name: 'estimatedCompletionTime',
label: 'Timeleft',

@ -146,6 +146,8 @@ namespace Sonarr.Api.V3.Queue
return q => q.Status;
case "series.sortTitle":
return q => q.Series?.SortTitle;
case "title":
return q => q.Title;
case "episode":
return q => q.Episode;
case "episode.airDateUtc":

Loading…
Cancel
Save