feat: add monthly sum and other small improvements #7
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user