Skip to content

Commit

Permalink
fix: no dups on stream documents view (#6804)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards authored Dec 18, 2023
1 parent 149f82f commit 7d44780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/group/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1296,7 +1296,7 @@ def stream_documents(request, acronym):
qs = Document.objects.filter(stream=acronym).filter(
Q(type_id="draft", states__type="draft", states__slug="active")
| Q(type_id="rfc")
)
).distinct()
docs, meta = prepare_document_table(request, qs, max_results=1000)
return render(request, 'group/stream_documents.html', {'stream':stream, 'docs':docs, 'meta':meta, 'editable':editable } )

Expand Down

0 comments on commit 7d44780

Please sign in to comment.