Skip to content

Commit

Permalink
[ui] Add turnover to drilldown chart (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
hhssb authored May 9, 2024
2 parents d421499 + 1f8671a commit 621f8b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/src/app/reports/statbus-chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
1 change: 1 addition & 0 deletions app/src/app/reports/types/drill-down.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type DrillDownPoint = {
path: string;
count: number;
employees: number;
turnover: number;
label: string;
has_children: boolean;
};

0 comments on commit 621f8b5

Please sign in to comment.