Skip to content

Commit

Permalink
Merge pull request #3759 from webcompat/issue/3758/1
Browse files Browse the repository at this point in the history
Fixes #3758 - Fix a problem with issue getting lost when filing an auth report
  • Loading branch information
ksy36 authored Apr 13, 2023
2 parents ad8c317 + e088501 commit 74f58ea
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export const uploadConsoleLogs = () => {
const formdata = new FormData();
formdata.append("console_logs", JSON.stringify(details.consoleLog));

delete details.consoleLog;
detailsInput.val(JSON.stringify(details));

return $.ajax({
contentType: false,
processData: false,
Expand Down

0 comments on commit 74f58ea

Please sign in to comment.