Fix proposal loading #44

Merged
bumi merged 1 commits from fix/proposal-loading into master 2018-04-10 15:48:54 +00:00
Showing only changes of commit e24fc6c81d - Show all commits
+1 -1
View File
@@ -13,7 +13,7 @@ export default class Operator extends Base {
count = count.toNumber();
let proposals = [];
for (let id = 0; id < count; id++) {
for (let id = 1; id <= count; id++) {
proposals.push(this.getById(id));
}