Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit 68e6b86

Browse files
update BallotLeaders to show top 10 instead of 3
1 parent 3fb42e7 commit 68e6b86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Voting/BallotLeaders.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default {
8282
return a.numVotes < b.numVotes ? 1 : -1;
8383
});
8484
this.$emit("input", items.length);
85-
items.splice(3, items.length - 3);
85+
items.splice(10, items.length - 10);
8686
Vue.set(this.pageData, "items", items);
8787
resolve();
8888
}, 1000)

0 commit comments

Comments
 (0)