diff --git a/src/components/DynamicReportComponent.vue b/src/components/DynamicReportComponent.vue index 3e636e2..f831676 100644 --- a/src/components/DynamicReportComponent.vue +++ b/src/components/DynamicReportComponent.vue @@ -28,7 +28,7 @@ - {{ column }}  + {{ column }}  @@ -42,5 +42,5 @@ import { DynamicReport } from '../reports/base.ts'; import DynamicReportEntryComponent from './DynamicReportEntryComponent.vue'; - const { report } = defineProps<{ report: DynamicReport | null }>(); + const { report, columns } = defineProps<{ report: DynamicReport | null, columns?: string[] }>(); diff --git a/src/reports/BalanceSheetReport.vue b/src/reports/BalanceSheetReport.vue index 27cdd7a..68c1dfa 100644 --- a/src/reports/BalanceSheetReport.vue +++ b/src/reports/BalanceSheetReport.vue @@ -17,7 +17,7 @@ -->