New: Add optional Source Title column to history

This commit is contained in:
Stevie Robinson 2022-03-24 21:49:37 +01:00 committed by GitHub
parent d899225509
commit 581fb2cb3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

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

View File

@ -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',