diff options
author | Jessica Fairchild <realityfabric@gmail.com> | 2019-06-19 12:56:02 -0700 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-06-20 08:44:02 +0200 |
commit | 7cf75374caab55413646a64b8605c46a6d4abffd (patch) | |
tree | caacc27221e5a8deebfe96f44e0d49e63a0980ed | |
parent | a5f8b0b49f09e4399a8176d5cd06cc80c61b07d8 (diff) | |
download | PeerTube-7cf75374caab55413646a64b8605c46a6d4abffd.tar.gz PeerTube-7cf75374caab55413646a64b8605c46a6d4abffd.tar.zst PeerTube-7cf75374caab55413646a64b8605c46a6d4abffd.zip |
Rearrange search filter options
Search filter options were out of sequence (short, long, medium) and now they are in sequence (short, medium, long)
-rw-r--r-- | client/src/app/search/search-filters.component.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/search/search-filters.component.ts b/client/src/app/search/search-filters.component.ts index 762a6b7f2..e13aa91bf 100644 --- a/client/src/app/search/search-filters.component.ts +++ b/client/src/app/search/search-filters.component.ts | |||
@@ -57,12 +57,12 @@ export class SearchFiltersComponent implements OnInit { | |||
57 | label: this.i18n('Short (< 4 min)') | 57 | label: this.i18n('Short (< 4 min)') |
58 | }, | 58 | }, |
59 | { | 59 | { |
60 | id: 'long', | ||
61 | label: this.i18n('Long (> 10 min)') | ||
62 | }, | ||
63 | { | ||
64 | id: 'medium', | 60 | id: 'medium', |
65 | label: this.i18n('Medium (4-10 min)') | 61 | label: this.i18n('Medium (4-10 min)') |
62 | }, | ||
63 | { | ||
64 | id: 'long', | ||
65 | label: this.i18n('Long (> 10 min)') | ||
66 | } | 66 | } |
67 | ] | 67 | ] |
68 | 68 | ||