Fix history columns

pull/4269/head
Bogdan 7 months ago
parent e408c6f055
commit 5662775263

@ -60,7 +60,7 @@ export const defaultState = {
}, },
{ {
name: 'customFormats', name: 'customFormats',
label: 'Formats', label: () => translate('Formats'),
isSortable: false, isSortable: false,
isVisible: true isVisible: true
}, },
@ -90,17 +90,12 @@ export const defaultState = {
label: () => translate('SourceTitle'), label: () => translate('SourceTitle'),
isVisible: false isVisible: false
}, },
{
name: 'sourceTitle',
label: 'Source Title',
isVisible: false
},
{ {
name: 'customFormatScore', name: 'customFormatScore',
columnLabel: 'Custom Format Score', columnLabel: () => translate('CustomFormatScore'),
label: React.createElement(Icon, { label: React.createElement(Icon, {
name: icons.SCORE, name: icons.SCORE,
title: 'Custom format score' title: () => translate('CustomFormatScore')
}), }),
isVisible: false isVisible: false
}, },

Loading…
Cancel
Save