diff options
author | BO41 <lukasw41@gmail.com> | 2018-10-16 01:04:50 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2018-10-16 01:04:50 +0200 |
commit | dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb (patch) | |
tree | 4c0f57248268e780804243dac46f8ae9bda96a94 /client/src/app/search/search.component.ts | |
parent | 4fe98be6b421498577dc0bbcbe22c105408f394d (diff) | |
download | PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.tar.gz PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.tar.zst PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.zip |
update tslint config and fix member ordering (#1279)
Diffstat (limited to 'client/src/app/search/search.component.ts')
-rw-r--r-- | client/src/app/search/search.component.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/search/search.component.ts b/client/src/app/search/search.component.ts index 911d56843..ecffcafc1 100644 --- a/client/src/app/search/search.component.ts +++ b/client/src/app/search/search.component.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { Component, OnDestroy, OnInit } from '@angular/core' | 1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { AuthService, RedirectService } from '@app/core' | 3 | import { AuthService } from '@app/core' |
4 | import { NotificationsService } from 'angular2-notifications' | 4 | import { NotificationsService } from 'angular2-notifications' |
5 | import { forkJoin, Subscription } from 'rxjs' | 5 | import { forkJoin, Subscription } from 'rxjs' |
6 | import { SearchService } from '@app/search/search.service' | 6 | import { SearchService } from '@app/search/search.service' |
@@ -40,7 +40,6 @@ export class SearchComponent implements OnInit, OnDestroy { | |||
40 | private route: ActivatedRoute, | 40 | private route: ActivatedRoute, |
41 | private router: Router, | 41 | private router: Router, |
42 | private metaService: MetaService, | 42 | private metaService: MetaService, |
43 | private redirectService: RedirectService, | ||
44 | private notificationsService: NotificationsService, | 43 | private notificationsService: NotificationsService, |
45 | private searchService: SearchService, | 44 | private searchService: SearchService, |
46 | private authService: AuthService | 45 | private authService: AuthService |