Remove comments
This commit is contained in:
@ -120,7 +120,7 @@
|
||||
areVotersKnown: true,
|
||||
maxVoters: 0,
|
||||
expiresAt: "",
|
||||
choices: ["", ""] // Start with two empty choices
|
||||
choices: ["", ""]
|
||||
},
|
||||
createdElectionId: 0,
|
||||
voterIdentities: [],
|
||||
@ -128,11 +128,11 @@
|
||||
errorDetails: {},
|
||||
|
||||
addChoice() {
|
||||
this.election.choices.push(""); // Add a new empty choice
|
||||
this.election.choices.push("");
|
||||
},
|
||||
|
||||
removeChoice(index) {
|
||||
this.election.choices.splice(index, 1); // Remove choice by index
|
||||
this.election.choices.splice(index, 1);
|
||||
},
|
||||
|
||||
async copyCode(code) {
|
||||
|
Reference in New Issue
Block a user