diff --git a/frontend/src/Store/Actions/historyActions.js b/frontend/src/Store/Actions/historyActions.js index 2fddabbda..225698229 100644 --- a/frontend/src/Store/Actions/historyActions.js +++ b/frontend/src/Store/Actions/historyActions.js @@ -60,7 +60,7 @@ export const defaultState = { }, { name: 'customFormats', - label: 'Formats', + label: () => translate('Formats'), isSortable: false, isVisible: true }, @@ -90,17 +90,12 @@ export const defaultState = { label: () => translate('SourceTitle'), isVisible: false }, - { - name: 'sourceTitle', - label: 'Source Title', - isVisible: false - }, { name: 'customFormatScore', - columnLabel: 'Custom Format Score', + columnLabel: () => translate('CustomFormatScore'), label: React.createElement(Icon, { name: icons.SCORE, - title: 'Custom format score' + title: () => translate('CustomFormatScore') }), isVisible: false },