From e51b1ccfa10508364722eb376b3c49b73388ffdf Mon Sep 17 00:00:00 2001 From: nobohan Date: Mon, 25 Oct 2021 15:40:18 +0200 Subject: [PATCH] dashboard data: biomasse --- patches/frontend/src/conf/dashboard.config.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/patches/frontend/src/conf/dashboard.config.ts b/patches/frontend/src/conf/dashboard.config.ts index 4423fa3..ff19956 100644 --- a/patches/frontend/src/conf/dashboard.config.ts +++ b/patches/frontend/src/conf/dashboard.config.ts @@ -53,7 +53,11 @@ export const dashboardData = { name: 'Vergers', area: 33.06, } - ] + ], + biomasse : { + agri_area: 2070, + forest_area: 25 + } }; interface landuse { @@ -66,6 +70,11 @@ interface production { area: number } +interface biomasse { + agri_area: number, + forest_area: number +} + export type dashboardDataType = { base: { @@ -77,5 +86,6 @@ export type dashboardDataType = { }, landuse: landuse[], production: production[], + biomasse: biomasse // landuse: Record }