mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-18 20:43:03 -06:00
Fix #4562
This commit is contained in:
parent
7a6a911f7f
commit
bc6a2c2cca
@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- #4547 Call to bad function breaks several report.
|
||||
- #4545 Migration error in some cases, fixed with an if-statement.
|
||||
- #4557 LDAP configuration error in Docker image.
|
||||
- #4562 Hidden budgets were visible in v2.
|
||||
|
||||
### Security
|
||||
- Initial release.
|
||||
|
@ -77,6 +77,9 @@ export default {
|
||||
for (let key in data.data) {
|
||||
if (data.data.hasOwnProperty(key) && /^0$|^[1-9]\d*$/.test(key) && key <= 4294967294) {
|
||||
let current = data.data[key];
|
||||
if(!current.attributes.active) {
|
||||
continue;
|
||||
}
|
||||
this.budgetList.push(
|
||||
{
|
||||
id: parseInt(current.id),
|
||||
|
Loading…
Reference in New Issue
Block a user