New: Add optional Source Title column to history

(cherry picked from commit 581fb2cb3d47d62fe16b840081647056ec77043d)
pull/2864/head
Stevie Robinson 2 years ago committed by Qstick
parent 8c5b227b17
commit 206d34c642

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

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

Loading…
Cancel
Save