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})