diff --git a/libdrcr/src/reporting/steps.rs b/libdrcr/src/reporting/steps.rs index cb26016..4eb502c 100644 --- a/libdrcr/src/reporting/steps.rs +++ b/libdrcr/src/reporting/steps.rs @@ -1,5 +1,5 @@ /* - DrCr: Web-based double-entry bookkeeping framework + DrCr: Double-entry bookkeeping framework Copyright (C) 2022-2025 Lee Yingtong Li (RunasSudo) This program is free software: you can redistribute it and/or modify @@ -1519,7 +1519,7 @@ impl ReportingStep for TrialBalance { // Add entry for each account let mut section = Section { text: None, - id: None, + id: Some("accounts".to_string()), visible: true, entries: Vec::new(), }; diff --git a/src/pages/ChartOfAccountsView.vue b/src/pages/ChartOfAccountsView.vue index dcc8262..d4ec22f 100644 --- a/src/pages/ChartOfAccountsView.vue +++ b/src/pages/ChartOfAccountsView.vue @@ -1,5 +1,5 @@