Skip to content

Commit

Permalink
SRV-894 revert - reverting translations
Browse files Browse the repository at this point in the history
  • Loading branch information
nyohasstium authored Nov 21, 2024
1 parent 2f57447 commit 1c681e6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,9 @@ export default function TableChart<D extends DataRecord = DataRecord>(
} = props;
const comparisonColumns = [
{ key: 'all', label: t('Display all') },
{ key: '#', label: t('Previous value') },
{ key: '△', label: t('Difference') },
{ key: '%', label: t('% Difference') },
{ key: '#', label: '#' },
{ key: '△', label: '△' },
{ key: '%', label: '%' },
];
const timestampFormatter = useCallback(
value => getTimeFormatterForGranularity(timeGrain)(value),
Expand Down Expand Up @@ -404,7 +404,7 @@ export default function TableChart<D extends DataRecord = DataRecord>(
};
};

const comparisonLabels = [t('Current value'), t('Previous value'), t('Difference'), t('% Difference')];
const comparisonLabels = [t('Main'), '#', '△', '%'];
const filteredColumnsMeta = useMemo(() => {
if (!isUsingTimeComparison) {
return columnsMeta;
Expand Down

0 comments on commit 1c681e6

Please sign in to comment.