Skip to content

Commit

Permalink
Merge pull request #563 from xchem/fix_metadata_tags
Browse files Browse the repository at this point in the history
Metadata.csv in download now showing correct tags
  • Loading branch information
kaliif authored Mar 14, 2024
2 parents 7805e71 + 849c24c commit 34d7c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viewer/download_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, category):
query = SiteObservationTag.objects.filter(
pk=Subquery(
SiteObvsSiteObservationTag.objects.filter(
site_observation=OuterRef('pk'),
site_observation=OuterRef(OuterRef('pk')),
site_obvs_tag__category=TagCategory.objects.get(
category=category,
),
Expand Down

0 comments on commit 34d7c48

Please sign in to comment.