fix 't.apps is not iterable'

This commit is contained in:
Simon Vieille 2020-08-18 14:39:45 +02:00
parent cf0f459aeb
commit e7d319bbf7
Signed by: deblan
GPG key ID: 03383D15A1D31745

View file

@ -64,8 +64,8 @@ export default {
let apps = []
for (let category of that.items) {
for (let app of category.apps) {
apps.push(app)
for (let a in category.apps) {
apps.push(category.apps[a])
}
}