#681 [frontend] sort outdated chroots by name; fix #593
Closed 4 years ago by praiskup. Opened 4 years ago by frostyx.
copr/ frostyx/copr sort-outdated-chroots-by-name  into  master

@@ -372,7 +372,8 @@ 

  

      @property

      def outdated_chroots(self):

-         return [chroot for chroot in self.copr_chroots if chroot.delete_after]

+         return sorted([chroot for chroot in self.copr_chroots if chroot.delete_after],

+                       key=lambda ch: ch.name)

  

      @property

      def active_chroots_grouped(self):