From 636c2ad49bd1a4cfdba7e8c6a75691819cc2fdc1 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Tue, 7 Apr 2020 00:01:55 +0200 Subject: Add a unique id for each link --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.html') diff --git a/index.html b/index.html index 077a8e0..bc3f8b6 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@ var generateProposalHTML = function(proposal) { var listItem = document.createElement('li'); - listItem.innerHTML = proposal.title + ' (' + proposal.total_occurrences + ' votes) I agree. ' + listItem.innerHTML = proposal.title + ' (' + proposal.total_occurrences + ' votes) I agree. ' return listItem; }; -- cgit