Skip to content

Commit

Permalink
SRV-872 fix - missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
nyohasstium authored Dec 20, 2024
1 parent deaf822 commit 1921cf9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export default function TableChart<D extends DataRecord = DataRecord>(
{ key: 'all', label: t('Display all') },
{ key: t('sv_previous'), label: t('sv_previous') },
{ key: t('sv_change') , label: t('sv_change') },
{ key: t('sv_change_percentage') label: t('sv_change_percentage') },
{ key: t('sv_change_percentage'), label: t('sv_change_percentage') },
];
const timestampFormatter = useCallback(
value => getTimeFormatterForGranularity(timeGrain)(value),
Expand Down

0 comments on commit 1921cf9

Please sign in to comment.