1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

New: Add optional Source Title column to history

(cherry picked from commit 581fb2cb3d47d62fe16b840081647056ec77043d)
Fixes #7159
This commit is contained in:
Stevie Robinson 2022-03-24 21:49:37 +01:00 committed by Qstick
parent 6c494e9a92
commit e7d4429fe4
2 changed files with 15 additions and 0 deletions

View File

@ -179,6 +179,16 @@ class HistoryRow extends Component {
); );
} }
if (name === 'sourceTitle') {
return (
<TableRowCell
key={name}
>
{sourceTitle}
</TableRowCell>
);
}
if (name === 'details') { if (name === 'details') {
return ( return (
<TableRowCell <TableRowCell

View File

@ -79,6 +79,11 @@ export const defaultState = {
label: translate('ReleaseGroup'), label: translate('ReleaseGroup'),
isVisible: false isVisible: false
}, },
{
name: 'sourceTitle',
label: translate('SourceTitle'),
isVisible: false
},
{ {
name: 'details', name: 'details',
columnLabel: translate('Details'), columnLabel: translate('Details'),