diff options
| -rw-r--r-- | index.html | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -45,7 +45,9 @@ const container = document.getElementById('proposals'); - parsedResponse.result.items.forEach((proposal) => { + parsedResponse.result.items + .sort((a, b) => b.total_occurrences - a.total_occurrences) + .forEach((proposal) => { container.appendChild(generateProposalHTML(proposal)); }); |