New: Add optional Source Title column to history

(cherry picked from commit 581fb2cb3d47d62fe16b840081647056ec77043d)
This commit is contained in:
Stevie Robinson
2022-03-24 21:49:37 +01:00
committed by Qstick
parent 117a5c8010
commit 0689bec779
2 changed files with 15 additions and 0 deletions

View File

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

View File

@@ -71,6 +71,11 @@ export const defaultState = {
label: 'Release Group',
isVisible: false
},
{
name: 'sourceTitle',
label: 'Source Title',
isVisible: false
},
{
name: 'details',
columnLabel: 'Details',