Skip to content
Snippets Groups Projects
Commit 2ba48d81 authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Fix variable for verifier name

(maven replace the current {name} with the maven property "name")
parent 2e3c4262
No related branches found
No related tags found
No related merge requests found
......@@ -64,13 +64,13 @@
success: function (verificationTypes) {
let $ul = $(`<ul>`);
$verificationConfig.append($ul);
for (const [name, value] of Object.entries(verificationTypes)) {
for (const [vName, value] of Object.entries(verificationTypes)) {
let $li = $(`<li>`);
let $checkbox = $(`<input type="checkbox" data-verificationtypename="${name}"
let $checkbox = $(`<input type="checkbox" data-verificationtypename="${vName}"
onchange="updateVerificationType(this)"/>`);
$checkbox[0].checked = value;
$li.append($checkbox);
$li.append($(`<label>${name}</label>`));
$li.append($(`<label>${vName}</label>`));
$ul.append($li);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment