Skip to content

Commit d71540d

Browse files
authored
Merge pull request #355 from topcoder-platform/gamification
Gamification QA FIxes
2 parents 65c3edf + d20e063 commit d71540d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src-ts/tools/gamification-admin/pages/badge-detail/update-badge.store.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,9 @@ export async function submitRequestAsync(request: UpdateBadgeRequest): Promise<G
2424
form.append('badge_description', request.badgeDesc)
2525
}
2626

27-
return xhrPostAsync(url, form)
27+
return xhrPostAsync(url, form, {
28+
headers: {
29+
'Content-Type': 'multipart/form-data',
30+
}
31+
})
2832
}

0 commit comments

Comments
 (0)