New: Add optional Source Title column to history

(cherry picked from commit 581fb2cb3d47d62fe16b840081647056ec77043d)
Fixes #7159
pull/7275/head
Stevie Robinson 2 years ago committed by Qstick
parent 6c494e9a92
commit e7d4429fe4

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

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

Loading…
Cancel
Save