From 83fb2e85e20ba9579e9a13993ea639d5f74bc7fd Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 28 Nov 2021 23:52:53 +0000 Subject: [PATCH] . --- atlas/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atlas/views.py b/atlas/views.py index fc90f123..73a00e81 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -532,10 +532,11 @@ def create_series_findings(request): sf = SeriesFindings.objects.create( series = series, - findings = findings, description = description, annotation_json = annotation_json, ) + sf.findings.set(findings) + sf.save() return JsonResponse({"success":True}) return JsonResponse({"success": False})