Skip to content

Commit

Permalink
Fix for #2097 (Quotes are now handled properly in UI-editable tables)
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzieIsaacs committed Aug 26, 2021
1 parent afa585e commit d25cfb7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cps/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ def list_restriction(res_type, user_id):
else:
json_dumps = ""
js = json.dumps(json_dumps)
response = make_response(js.replace("'", '"'))
response = make_response(js) #.replace("'", '"')
response.headers["Content-Type"] = "application/json; charset=utf-8"
return response

Expand Down
Loading

0 comments on commit d25cfb7

Please sign in to comment.