Compare commits

..

No commits in common. "f1ce71df8f1bd0abf50bb03cfbe349117cd10f8a" and "c44ce1e5143f73e80630743894b26ce68f9fed49" have entirely different histories.

View file

@ -63,7 +63,7 @@ export default class ProximoMainScreen extends FetchedDataSectionList {
data: []
});
for (let k = 0; k < articles.length; k++) {
if (articles[k]['type'].includes(types[i].id) && parseInt(articles[k]['quantity']) > 0) {
if (articles[k]['type'].includes(types[i].id)) {
finalData[i].data.push(articles[k]);
}
}