mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
Add a little sort and active filter.
This commit is contained in:
@@ -98,9 +98,17 @@ export default {
|
||||
];
|
||||
for (const key in res.data) {
|
||||
if (res.data.hasOwnProperty(key) && /^0$|^[1-9]\d*$/.test(key) && key <= 4294967294) {
|
||||
this.bills.push(res.data[key]);
|
||||
let current = res.data[key];
|
||||
if(current.active) {
|
||||
this.bills.push(res.data[key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
this.bills.sort(function(a, b) {
|
||||
if (a.name < b.name) return -1;
|
||||
if (a.name > b.name) return 1;
|
||||
return 0;
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user