Client - workaround to display data on chart + minor fixes

This commit is contained in:
Sam
2021-09-21 14:49:49 +02:00
parent 2c61b7605a
commit 7dc45cb254
3 changed files with 15 additions and 15 deletions

View File

@ -44,15 +44,13 @@ export const getDateKeys = (
const getStatisticsChartDataset = (
sportLabel: string,
color: string
): IStatisticsChartDataset =>
Object.assign(
{},
{
label: sportLabel,
backgroundColor: [color],
data: [],
}
)
): IStatisticsChartDataset => {
return {
label: sportLabel,
backgroundColor: [color],
data: [],
}
}
export const getDatasets = (displayedSports: ISport[]): TStatisticsDatasets => {
const datasets: TStatisticsDatasets = {