1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Getting back id field to PieChartData interface

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-04-11 07:45:50 +03:00
parent 39786e7911
commit 5d8f9a5dd6

View File

@ -17,6 +17,7 @@ export interface PieChartProps extends ChartProps {
}
export interface PieChartData extends ChartJS.ChartData {
id?: string;
datasets?: PieChartDataSets[];
}