]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Rearrange search filter options
authorJessica Fairchild <realityfabric@gmail.com>
Wed, 19 Jun 2019 19:56:02 +0000 (12:56 -0700)
committerChocobozzz <chocobozzz@cpy.re>
Thu, 20 Jun 2019 06:44:02 +0000 (08:44 +0200)
Search filter options were out of sequence (short, long, medium) and now they are in sequence (short, medium, long)

client/src/app/search/search-filters.component.ts

index 762a6b7f2833264677df9de6c5d631598f5fb74b..e13aa91bf09729ca497d7a86d2fe50336cd2af08 100644 (file)
@@ -56,13 +56,13 @@ export class SearchFiltersComponent implements OnInit {
         id: 'short',
         label: this.i18n('Short (< 4 min)')
       },
-      {
-        id: 'long',
-        label: this.i18n('Long (> 10 min)')
-      },
       {
         id: 'medium',
         label: this.i18n('Medium (4-10 min)')
+      },
+      {
+        id: 'long',
+        label: this.i18n('Long (> 10 min)')
       }
     ]