Rearrange search filter options

Search filter options were out of sequence (short, long, medium) and now they are in sequence (short, medium, long)
This commit is contained in:
Jessica Fairchild 2019-06-19 12:56:02 -07:00 committed by Chocobozzz
parent a5f8b0b49f
commit 7cf75374ca
1 changed files with 4 additions and 4 deletions

View 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)')
}
]