Skip to content
Snippets Groups Projects
Commit 055ca681 authored by Constance Okoghenun's avatar Constance Okoghenun
Browse files

Fixed bug with param config

parent c4199f9e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,7 +11,7 @@ export default class GpgBadges {
badges.html('<i class="fa fa-spinner fa-spin"></i>');
 
const params = parseQueryStringIntoObject(form.serialize());
return axios.get(form.data('signatures-path'), params)
return axios.get(form.data('signatures-path'), { params })
.then(({ data }) => {
data.signatures.forEach((signature) => {
badges.filter(`[data-commit-sha="${signature.commit_sha}"]`).replaceWith(signature.html);
Loading
Loading
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