From e8d4aacaf31169f3101e78839c4850cdcb436c8d Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 29 Nov 2021 20:14:44 +0000 Subject: [PATCH] . --- atlas/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlas/views.py b/atlas/views.py index 91157263..d1953cc9 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -540,7 +540,7 @@ def create_series_findings(request): series_id = request.POST.get("series") findings_ids = json.loads(request.POST.get("findings")) description = request.POST.get("description") - annotation_json = json.loads(request.POST.get("annotation_json")) + annotation_json = request.POST.get("annotation_json") series = Series.objects.get(pk=series_id) findings = Finding.objects.filter(pk__in=findings_ids)