From 89fb13255b614a40f7ae782767228dbb9fb006ba Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 29 Nov 2021 19:16:07 +0000 Subject: [PATCH] . --- atlas/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlas/models.py b/atlas/models.py index 451420c4..865784c9 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -222,7 +222,7 @@ class SeriesFinding(models.Model): annotation_json = models.TextField(null=True, blank=True) def __str__(self) -> str: - findings = self.findings.objects.values_list("name") + findings = self.findings.all().values_list("name") return f"{self.series.id}/{findings}/{self.description}"