From: Jessica Fairchild Date: Wed, 19 Jun 2019 19:56:02 +0000 (-0700) Subject: Rearrange search filter options X-Git-Tag: v1.4.0-rc.1~147 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7cf75374caab55413646a64b8605c46a6d4abffd;p=oweals%2Fpeertube.git Rearrange search filter options Search filter options were out of sequence (short, long, medium) and now they are in sequence (short, medium, long) --- 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 @@ -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)') } ]