diff --git a/app/src/app/reports/statbus-chart.tsx b/app/src/app/reports/statbus-chart.tsx index 53e7ec47f..1f8158238 100644 --- a/app/src/app/reports/statbus-chart.tsx +++ b/app/src/app/reports/statbus-chart.tsx @@ -32,6 +32,7 @@ export default function StatBusChart(props: { readonly drillDown: DrillDown }) { }[] = [ { value: "count", label: "Count", title: "Number of enterprises" }, { value: "employees", label: "Employees", title: "Number of employees" }, + { value: "turnover", label: "Turnover", title: "Total turnover" }, ]; return ( diff --git a/app/src/app/reports/types/drill-down.ts b/app/src/app/reports/types/drill-down.ts index 407bb5751..4768311c9 100644 --- a/app/src/app/reports/types/drill-down.ts +++ b/app/src/app/reports/types/drill-down.ts @@ -16,6 +16,7 @@ export type DrillDownPoint = { path: string; count: number; employees: number; + turnover: number; label: string; has_children: boolean; };