This commit is contained in:
James Cole 2021-03-30 08:12:48 +02:00
parent 7a6a911f7f
commit bc6a2c2cca
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D
2 changed files with 4 additions and 0 deletions

View File

@ -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.

View File

@ -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),