Commit c4199f9e authored by Constance Okoghenun's avatar Constance Okoghenun

changed params passed to from a string to an object

parent 7959d46a
import { parseQueryStringIntoObject } from '~/lib/utils/common_utils';
import axios from '~/lib/utils/axios_utils';
import flash from '~/flash';
import { __ } from '~/locale';
......@@ -9,8 +10,8 @@ export default class GpgBadges {
badges.html('<i class="fa fa-spinner fa-spin"></i>');
const params = form.serialize();
return axios.get(form.data('signatures-path'), { params })
const params = parseQueryStringIntoObject(form.serialize());
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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment