Skip to content

Commit e7ee080

Browse files
committed
Swap the sort order on the displayed revisions when completing a review
- Legacy-Id: 11632
1 parent 5fc023e commit e7ee080

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_review.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def __init__(self, review_req, *args, **kwargs):
314314

315315
doc = self.review_req.doc
316316

317-
known_revisions = NewRevisionDocEvent.objects.filter(doc=doc).order_by("-time").values_list("rev", flat=True)
317+
known_revisions = NewRevisionDocEvent.objects.filter(doc=doc).order_by("time", "id").values_list("rev", flat=True)
318318

319319
self.fields["state"].choices = [
320320
(slug, "{} - extra reviewer is to be assigned".format(label)) if slug == "part-completed" else (slug, label)

0 commit comments

Comments
 (0)