New: Release title column in queue table

This commit is contained in:
Qstick 2019-04-13 22:58:11 -04:00
parent 77293cf8ae
commit 909140988f
3 changed files with 16 additions and 0 deletions

View File

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

View File

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

View File

@ -139,6 +139,8 @@ namespace Lidarr.Api.V1.Queue
return q => q.Status;
case "artist.sortName":
return q => q.Artist?.SortName;
case "title":
return q => q.Title;
case "album":
return q => q.Album;
case "album.title":