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 committed Jan 6, 2025
1 parent 75062f9 commit cab623f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,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 cab623f

Please sign in to comment.