From 7cf75374caab55413646a64b8605c46a6d4abffd Mon Sep 17 00:00:00 2001 From: Jessica Fairchild Date: Wed, 19 Jun 2019 12:56:02 -0700 Subject: Rearrange search filter options 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 | 8 ++++---- 1 file 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 @@ -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)') } ] -- cgit v1.2.3