New: Add optional Source Title column to history

pull/4961/head
Stevie Robinson 2 years ago committed by GitHub
parent d899225509
commit 581fb2cb3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -82,6 +82,11 @@ export const defaultState = {
label: 'Release Group',
isVisible: false
},
{
name: 'sourceTitle',
label: 'Source Title',
isVisible: false
},
{
name: 'preferredWordScore',
columnLabel: 'Preferred Word Score',

Loading…
Cancel
Save