feat: add monthly sum and other small improvements #7

Merged
rmcampos merged 4 commits from feat/add-monthly-sum into main 2026-07-31 18:57:47 +00:00
2 changed files with 16 additions and 0 deletions
Showing only changes of commit cadc5a188a - Show all commits
+3
View File
@@ -16,6 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Category and input filter in the transactions page now show the sum of all matching transactions.
### Fixed
- Missing cancel button when editing a budget value.
---
## 2026-07-14
+13
View File
@@ -185,6 +185,19 @@ export default function Budgets() {
{upsertMutation.isPending ? 'Saving…' : 'Save'}
</button>
</div>
<div className="col-md-2">
<button
type="button"
className="btn btn-ghost btn-sm w-100"
onClick={() => {
setShowForm(false);
setCategoryId('');
setLimitAmount('');
}}
>
Cancel
</button>
</div>
</div>
</form>
</div>