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

Fix api call

parent ce4a7c83
No related branches found
No related tags found
No related merge requests found
...@@ -142,10 +142,11 @@ function getVerifications() { ...@@ -142,10 +142,11 @@ function getVerifications() {
apiPath += '?'; apiPath += '?';
} else { } else {
apiPath += "/types"; apiPath += "/types";
apiPath += '?';
for (let i = 0; i < $verifierTypes[0].selectedOptions.length; i++) { for (let i = 0; i < $verifierTypes[0].selectedOptions.length; i++) {
apiPath += '&typeName=' + $verifierTypes[0].selectedOptions[i].value; apiPath += 'typeName=' + $verifierTypes[0].selectedOptions[i].value
+ '&';
} }
apiPath += '&';
} }
apiPath += 'token=' + getMetricToken(); apiPath += 'token=' + getMetricToken();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment