mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
New: Release title column in queue
This commit is contained in:
@@ -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":
|
||||
|
||||
Reference in New Issue
Block a user